blob: 2ce57f65d4d545111fb273adacc2c7d4a75a750d [file] [log] [blame]
package groovy.bugs
class ConstructorParameterBug extends GroovyTestCase {
void testMethodWithNativeArray() {
value = new int[2*2]
println "${value} of type ${value.class}"
/** @todo fixme!
blah2(value)
*/
}
blah2(int[] wobble) {
println(wobble)
}
}