mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 17:52:27 +07:00
11 lines
259 B
Java
11 lines
259 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();
|
|
<caret>}
|
|
default -> "b";
|
|
};
|
|
}
|
|
} |