mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 16:02:32 +07:00
GitOrigin-RevId: 0503a15ffcbaa37fb4c12aa769d709b8522f5020
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:
|
|
}
|
|
}
|
|
}
|