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