Files
2022-10-06 15:55:11 +00:00

11 lines
269 B
Java

// "Make 'x' effectively final by moving initializer to the 'if' statement" "true-preview"
class X {
void test(boolean a) {
int x = 0;
if (a) {
x = 1;
}
else System.out.println("hello");
Runnable r = () -> System.out.println(<caret>x);
}
}