mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
11 lines
161 B
Java
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:
|
|
}
|
|
}
|
|
}
|