mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 08:41:59 +07:00
17 lines
361 B
Java
17 lines
361 B
Java
// "Merge with 'case 1'" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
void foo(int n) {
|
|
switch (n) {
|
|
case 1:
|
|
bar("A");
|
|
break;
|
|
case 2:
|
|
bar("B");
|
|
break;
|
|
case 3:
|
|
<caret>bar("A");
|
|
break;
|
|
}
|
|
}
|
|
void bar(String s){}
|
|
} |