Files
2020-05-25 22:47:36 +03:00

11 lines
287 B
Java

// "Wrap labeled rule's statement with code block" "GENERIC_ERROR_OR_WARNING"
class C {
String foo(int n) {
return switch (n) {
case 1 -> /*1*/ {
throw new RuntimeException(); /*2*/ //c3
}
default -> "b";
};
}
}