cleol
[mcs.git] / errors / cs0159.cs
blob882be581b5fb8cbc574d4c5e21ee170dca9f841a
1 // CS0159: The label `default:' could not be found within the scope of the goto statement
2 // Line: 10
4 class X {
6 static int m (int n)
8 switch (n){
9 case 0:
10 goto default;
12 case 1:
13 return 1;
16 return 10;
19 static void Main ()
21 m (1);