mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 17:15:38 +07:00
15 lines
325 B
Java
15 lines
325 B
Java
// "Merge with the default 'switch' branch" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
void foo(int n) {
|
|
switch (n) {
|
|
case 2:
|
|
bar("B");
|
|
break;
|
|
case 1:
|
|
default:
|
|
bar("A");
|
|
break;
|
|
}
|
|
}
|
|
void bar(String s){}
|
|
} |