[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-anon-99.cs
blob544839c9c3cf0cfc930815d0e497c063ac6094ba
1 using System;
3 class C
5 void Test ()
7 Action a = delegate {
9 object ca = 3;
11 int location = 0;
13 Action a2 = delegate {
15 location = 1;
17 object routing = ca;
19 Action a4 = delegate {
20 if (routing != null) {
21 Console.WriteLine ("ok");
25 a4 ();
29 a2 ();
34 a ();
37 public static int Main ()
39 new C ().Test ();
40 return 0;