[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0158.cs
1 // CS0158: The label `start' shadows another label by the same name in a contained scope
2 // Line: 9
3
4 class ClassMain {
5         public static void Main() {
6                 start:
7                 {
8                         start:  
9                         goto start;
10                 }
11         }
12 }
13