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