// "Replace 'switch' with 'if'" "true-preview" class Test { void foo(int x) { switch (x) { case 0,1: System.out.println("ready"); case 2,3: System.out.println("steady"); default: System.out.println("go"); } } }