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