Files
2023-02-23 14:27:19 +00:00

15 lines
256 B
Java

// "Invert 'if' condition" "true-preview"
class A {
int test(int x, int y) {
return switch (y) {
default -> {
if (x <= 10) {
yield 21;
}
else {
yield 11;
}
}
};
}
}