mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 17:52:27 +07:00
10 lines
250 B
Java
10 lines
250 B
Java
// "Unwrap code block of labeled rule" "LIKE_UNUSED_SYMBOL"
|
|
class C {
|
|
void foo(int n) {
|
|
String s;
|
|
switch (n) {
|
|
case 1 -> <caret>{ System.out.println(n); }
|
|
default -> System.out.println();
|
|
};
|
|
}
|
|
} |