blob: 06c81a45122ce01006c215a47e286b8053a22305 [file] [log] [blame]
// "Change variable 'test' type to 'int[][]'" "true"
class A {
void m() {
final int[][] test = {new int<caret>[]{1}};
}
}