quote only work on lambda on net_4_0
[mcs.git] / errors / cs1632.cs
blob121dcbd8e872c653ce8f3a6408beaef80161d612
1 // cs1632.cs: Control cannot leave the body of an anonymous method
2 // Line: 12
4 using System;
6 class X {
7 delegate void T ();
9 static void Main ()
11 T t = delegate {
12 goto L;
16 Console.WriteLine ("Hello");