class A { void test(int x) { switch (x) { case 0, 1, 2: case 3: System.out.println("hello"); default: } } }