Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/makeVarEffectivelyFinal/afterSimple.java
2022-09-09 15:06:38 +00:00

12 lines
211 B
Java

// "Make variable effectively final" "true-preview"
class X {
void test(boolean a) {
int x;
if (a) {
x = 1;
} else {
x = 0;
}
Runnable r = () -> System.out.println(x);
}
}