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

13 lines
219 B
Java

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