mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 04:45:20 +07:00
GitOrigin-RevId: 950de9dbd0cf727c6baa7363783e1723fb398a62
9 lines
271 B
Java
9 lines
271 B
Java
// "Unwrap code block of labeled rule" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
String foo(int n) {
|
|
switch (n) {
|
|
case 1 -> /*1*//*2*/throw /*3*/new RuntimeException(/*4*/)/*5*/; /*6*//*7*/
|
|
default ->System.out.println();
|
|
};
|
|
}
|
|
} |