Updated.
[mono.git] / mcs / errors / cs1632.cs
1 using System;
2
3 class X {
4         delegate void T ();
5
6         static void Main ()
7         {
8                 T t = delegate {
9                         goto L;
10                 };
11
12 L:
13                 Console.WriteLine ("Hello");
14                       
15         }
16 }
17         
18