summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/variableArrayType/after3.java
blob: 2f4ebd38f60e0964400750d7cf86c2f51685db9a (plain)
1
2
3
4
5
6
// "Change variable 'test' type to 'int[][]'" "true"
class A {
    void m() {
        int[][] test = new int[][]{<caret>{1}, {2}};
    }
}