mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
10 lines
142 B
Java
10 lines
142 B
Java
class A {
|
|
void test(int x) {
|
|
switch (x) {
|
|
case 0,/*hello*/ 1,2,3:
|
|
System.out.println("hello");
|
|
default:
|
|
}
|
|
}
|
|
}
|