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