Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting6/VariableUsedBeforeAssignmentWithParenthesis.java

11 lines
199 B
Java

class Unassigned {
public final int a;
public int b;
Unassigned(int value) {
b = <error descr="Variable '(this).a' might not have been initialized">(this).a</error>;
a = value;
}
}