mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 05:18:02 +07:00
GitOrigin-RevId: 950de9dbd0cf727c6baa7363783e1723fb398a62
9 lines
237 B
Java
9 lines
237 B
Java
// "Unwrap code block of labeled rule" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
String foo(int n) {
|
|
return switch (n) {
|
|
case 1 -> /*1*/ /*2*/ /*3*/ /*4*/ /*5*/ "a"; /*6*/
|
|
default -> "b";
|
|
};
|
|
}
|
|
} |