[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-anon-84.cs
1 using System;
2
3 public delegate C D (int i);
4
5 public class C
6 {
7         private readonly D field = delegate {
8                 int x = 0;
9                 return null;
10         };
11
12         public C ()
13         {
14         }
15
16         public C (D onMissing)
17         {
18         }
19
20         public static int Main ()
21         {
22                 new C ().field (3);
23                 return 0;
24         }
25 }