mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: 26ff6b4c39d82eb797c1f321d9a0d803fa01fe25
9 lines
126 B
Java
9 lines
126 B
Java
class A {
|
|
void test(int x) {
|
|
switch (x) {
|
|
default: case 0, 1, 2:
|
|
System.out.println("hello");
|
|
}
|
|
}
|
|
}
|