add ISafeSerializationData
[mcs.git] / tests / gtest-324.cs
blobc077524cb31503df8a807b560e8d42f180914e9f
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 static void Main ()