mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 950de9dbd0cf727c6baa7363783e1723fb398a62
14 lines
368 B
Java
14 lines
368 B
Java
// "Unwrap code block of labeled rule" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
int foo(final int x, int n) {
|
|
return switch (x) {
|
|
case 0 -> {
|
|
<caret>yield /*1*/ switch (n) { // 2
|
|
case 0 -> 0;
|
|
default -> 1;
|
|
}/*3*/; //4
|
|
}
|
|
default -> 2;
|
|
};
|
|
}
|
|
} |