[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0159-8.cs
1 // CS0159: The label `a:' could not be found within the scope of the goto statement
2 // Line: 9
3
4 public class A
5 {
6         public static void Main ()
7         {
8                 int i = 9;
9                 goto a;
10                 switch (i) {
11                 case 9:
12                 a:
13                         break;
14                 }
15         }
16 }
17