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