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

13 lines
287 B
Java

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