blob: 1197b2f16cf7d645a528a226ec41b12b16b66dd9 [file] [log] [blame]
// "Change 'new Object()' to 'new int[][]'" "true"
public class TTT {
void f() {
String s = new Object();
int[][] i = new int[<caret><selection>0</selection>][];
int[] f = new int[0][];
}
}