Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-10
-
None
Description
class ArrayAutoboxingTest extends GroovyTestCase {
void testUnwantedAutoboxingWhenInvokingMethods()
{ assert blah2(new int[2*2]) == "[I" }blah2(Object o)
{ return o.class.name }}
the array is of type Integer[] but should be a int[]