Files
kotlin/compiler/testData/compileJavaAgainstKotlin/ArrayOfIntArray.java
Stepan Koltsov b5bb8ef5d8 working on signature generation for arrays
* more tests
* fix signature generation for Array<Array<Int>>
2011-12-11 21:23:30 +04:00

8 lines
112 B
Java

class ArrayOfIntArray {
{
int[][] a = new int[0][];
int[][] r = namespace.ohMy(a);
}
}