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