[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-309.cs
1 class Test<A,B>
2 {
3         public void Foo<V,W> (Test<A,W> x, Test<V,B> y)
4         { }
5 }
6
7 class X
8 {
9         public static void Main ()
10         {
11                 Test<float,int> test = new Test<float,int> ();
12                 test.Foo (test, test);
13         }
14 }