[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-anon-26.cs
blob0c37e3aff2437ed081020e486a571fcf5b31e620
1 namespace TestGotoLabels
3 class GotoLabelsTest
5 public delegate void MyDelegate ();
7 public static int Main ()
9 TestMethod2 (delegate () {
10 goto outLabel;
11 outLabel:
12 return;
13 });
15 return 0;
18 public static void TestMethod2 (MyDelegate md)
20 md.Invoke ();