1 2 3 4 5 6 7 8 9
// CS0153: A goto case is only valid inside a switch statement // Line: 7 class X { void Main () { goto case 5; } }