[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-604.cs
1 class A<T>
2 {
3         public interface IB { }
4 }
5
6 class E : A<int>.IB, A<string>.IB
7 {
8         public static void Main ()
9         {
10                 new E ();
11         }
12 }