(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1632.cs
blobf4fe97745a7bfea0aac76630c94a46c0ed7b6d83
1 using System;
3 class X {
4 delegate void T ();
6 static void Main ()
8 T t = delegate {
9 goto L;
13 Console.WriteLine ("Hello");