// cs1523: case or default must precede code in switch statement // Line: 11 class X { static void Main () { int i = 0; switch (i){ i = 4; } } }