[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-292.cs
1 namespace Test
2 {
3         public delegate void Handler<TA> (TA sender)
4                 where TA: A<TA>;
5
6         public class A<TA>
7                 where TA: A<TA>
8         { }
9 }
10
11 class X
12 {
13         public static void Main ()
14         { }
15 }