mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 04:43:02 +07:00
9 lines
220 B
Java
9 lines
220 B
Java
// "Unwrap code block of labeled rule" "LIKE_UNUSED_SYMBOL"
|
|
class C {
|
|
String foo(int n) {
|
|
return switch (n) {
|
|
case 1 -> throw new RuntimeException();
|
|
default -> "b";
|
|
};
|
|
}
|
|
} |