mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 21:16:44 +07:00
13 lines
285 B
Java
13 lines
285 B
Java
// "Merge with 'case 1:'" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
String foo(int n) {
|
|
switch (n) {
|
|
/* comment 1 */
|
|
case 1:
|
|
case 2:
|
|
/* comment 2 */
|
|
return "A"; // comment 3
|
|
}
|
|
return "";
|
|
}
|
|
} |