// "Replace 'switch' with 'if'" "true-preview" class X { void test(int i) { switch (i) { case 1: //foo if (Math.random() > 0.5) { System.out.println("Hello"); } } } }