[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / gtest-324.cs
blob56a1ff746c841ced3ef0f2b09705c52002ae05f5
1 public delegate void A();
3 class B
5 public static event A D;
6 long[] d = new long [1];
8 void C ()
10 int a = 0;
11 int b = 0;
13 A block = delegate {
14 long c = 0;
16 B.D += delegate {
17 d [b] = c;
18 F (c);
23 public void F (long i)
27 public static void Main ()