mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
13 lines
313 B
Java
13 lines
313 B
Java
// "Wrap labeled rule's statement with code block" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
String foo(int n) {
|
|
String s;
|
|
switch (n) {
|
|
case 1 -> /*1*/{
|
|
s = Integer.toString(/*2*/n);
|
|
}/*3*/
|
|
default -> s = "b";
|
|
};
|
|
return s;
|
|
}
|
|
} |