[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-541.cs
1 public class Foo
2 {
3 }
4
5 public class Top<S> where S : Foo
6 {
7         public class Base<T> where T : S
8         {
9                 public class Derived<U> where U : T
10                 {
11                         public void Test ()
12                         {
13                         }
14                 }
15         }
16 }
17
18 public class Test
19 {
20         public static int Main ()
21         {
22                 Top<Foo>.Base<Foo>.Derived<Foo> d = new Top<Foo>.Base<Foo>.Derived<Foo> ();
23                 d.Test ();
24                 return 0;
25         }
26 }