resync
[mcs.git] / errors / cs0159.cs
blobb09670f9014d5b41a7815a8ae752b92b45932cb4
1 // cs0159.cs: No such label `default:' within the scope of the goto statement
2 // Line:
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);