mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
11 lines
246 B
Java
11 lines
246 B
Java
// "Merge with 'case 1'" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
void foo(int n) {
|
|
switch (n) {
|
|
case 1, 4 -> bar("A");
|
|
case 2 -> bar("B");
|
|
case 3 -> bar("A");
|
|
}
|
|
}
|
|
void bar(String s){}
|
|
} |