mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
11 lines
265 B
Java
11 lines
265 B
Java
// "Unwrap code block of labeled rule" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
String foo(int n) {
|
|
return switch (n) {
|
|
case 1 -> {
|
|
throw new RuntimeException();
|
|
<caret>}
|
|
default -> "b";
|
|
};
|
|
}
|
|
} |