mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 950de9dbd0cf727c6baa7363783e1723fb398a62
9 lines
217 B
Java
9 lines
217 B
Java
// "Unwrap code block of labeled rule" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
String foo(int n) {
|
|
return switch (n) {
|
|
case 1 -> Integer.toString(n);
|
|
default -> "b";
|
|
};
|
|
}
|
|
} |