mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
10 lines
256 B
Java
10 lines
256 B
Java
// "Unwrap code block of labeled rule" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
void foo(int n) {
|
|
String s;
|
|
switch (n) {
|
|
case 1 -> <caret>{ System.out.println(n); }
|
|
default -> System.out.println();
|
|
};
|
|
}
|
|
} |