mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
14 lines
307 B
Java
14 lines
307 B
Java
// "Merge with 'case 1'" "GENERIC_ERROR_OR_WARNING"
|
|
class C {
|
|
String foo(int n) {
|
|
switch (n) {
|
|
case 1:
|
|
/* comment 1 */
|
|
return "A";
|
|
case 2:
|
|
// comment 1
|
|
<caret>return "A";
|
|
}
|
|
return "";
|
|
}
|
|
} |