[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1632.cs
1 // CS1632: Control cannot leave the body of an anonymous method
2 // Line: 12
3
4 using System;
5
6 class X {
7         delegate void T ();
8
9         static void Main ()
10         {
11                 T t = delegate {
12                         goto L;
13                 };
14
15 L:
16                 Console.WriteLine ("Hello");
17                       
18         }
19 }
20         
21