mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 16:02:32 +07:00
GitOrigin-RevId: 0503a15ffcbaa37fb4c12aa769d709b8522f5020
11 lines
146 B
Java
11 lines
146 B
Java
class A {
|
|
void test(int x) {
|
|
switch (x) {
|
|
case 0, 1, 2:
|
|
case 3:
|
|
System.out.println("hello");
|
|
default:
|
|
}
|
|
}
|
|
}
|