Files
Tagir Valeev 8e02b90e66 [java] IDEA-296138 Join lines: join case 1:/case 2: into case 1,2:
GitOrigin-RevId: 0503a15ffcbaa37fb4c12aa769d709b8522f5020
2022-06-17 17:21:03 +00:00

11 lines
161 B
Java

class A {
void test(int x) {
switch (x) {
<caret>case 0:
case /*hello*/ 1,2,3:
System.out.println("hello");
default:
}
}
}