Files
2022-04-26 11:39:49 +00:00

13 lines
356 B
Java

// "Unwrap code block of labeled rule" "GENERIC_ERROR_OR_WARNING"
class C {
int foo(final int x, int n) {
return switch (x) {
case 0 -> /*1*/ /*3*/ //4
switch (n) { // 2
case 0 -> 0;
default -> 1;
};
default -> 2;
};
}
}