[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-anon-130.cs
1 using System;
2 public delegate void Simple ();
3
4 public delegate Simple Foo ();
5
6 class X
7 {
8         public void Hello<U> (U u)
9         {
10         }
11
12         public void Test<T> (T t)
13         {
14                 {
15                         T u = t;
16                         Hello (u);
17                         Foo foo = delegate {
18                                 T v = u;
19                                 Hello (u);
20                                 return delegate {
21                                         Hello (u);
22                                         Hello (v);
23                                 };
24                         };
25                 }
26         }
27
28         public static void Main ()
29         {
30         }
31