// "Replace 'switch' with 'if'" "true-preview" class X { int m(int i) { if (i > 0) switch (++i) { case 1: System.out.println(1); case 2: System.out.println(2); } } }