[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-008.cs
1 interface I
2 {
3         void Hello ();
4 }
5
6 class Stack<T>
7         where T : I, new ()
8 {
9 }
10
11 class Test
12 {
13 }
14
15 class X
16 {
17         public static void Main()
18         {
19         }
20 }