mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 02:04:23 +07:00
closes #2244 GitOrigin-RevId: d871a8dd8a645f30fa02ba0ec6baffd5d9c6b926
12 lines
255 B
Java
12 lines
255 B
Java
// "Merge with 'case 1'" "GENERIC_ERROR_OR_WARNING"
|
|
class SimpleExpressionsWithComments {
|
|
String foo(int n) {
|
|
return switch (n) {
|
|
//comment1
|
|
//comment2
|
|
//comment3
|
|
case 1, 3 -> "A"; //comment4
|
|
case 2 -> "B";
|
|
};
|
|
}
|
|
} |