import java.io.*; class DuplicateSwitchLabels { final int FI = 4; void f(final int i) { switch (i) { default: break; case 1: break; default: break; } switch (i) { case 1: break; case 1: break; } switch (i) { case FI/2 - 1: break; case (1 + 35/16)%2: break; case FI - 8: break; } final byte b = 127; switch (i) { case b: System.out.println("b=" + b + ";"); case 127: System.out.println("MySwitch.MySwitch"); } switch (0) { case 0: case "\410" == "!0" ? 1 : 0: case ""==""+"" ? 3 : 0: } } }