Files
2022-06-17 17:21:03 +00:00

10 lines
142 B
Java

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