Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs1632.cs
blob3371dea8cff76f9a40eae7b171d058e8427a748a
1 // CS1632: 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");