[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-324.cs
1 public delegate void A();
2
3 class B
4 {
5         public static event A D;
6         long[] d = new long [1];
7
8         void C ()
9         {
10                 int a = 0;
11                 int b = 0;
12
13                 A block = delegate {
14                         long c = 0;
15
16                         B.D += delegate {
17                                 d [b] = c;
18                                 F (c);
19                         };
20                 };
21         }
22
23         public void F (long i)
24         {
25         }
26
27         public static void Main ()
28         {
29         }
30 }