id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc	lang	patch	platform
1792	return inside void function in integer.pmc breaks build on solaris	rg		"Change occurred in r48754. Suggested patch:
{{{
Index: src/pmc/integer.pmc
===================================================================
--- src/pmc/integer.pmc (revision 49046)
+++ src/pmc/integer.pmc (working copy)
@@ -1228,7 +1228,7 @@
         else {
             maybe_throw_overflow_error(INTERP);
             SELF = upgrade_self_to_bignum(INTERP, SELF);
-            return VTABLE_i_neg(INTERP, SELF);
+            VTABLE_i_neg(INTERP, SELF);
         }
     }
}}}
Sorry for inlining (and patch is also copy&pasted), but it's so simple it just removes the return statement.
"	bug	closed	normal		core	2.7.0	medium	fixed				applied	solaris
