[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-260.cs
1 class A<T> where T : class {}
2 class B<T> : A<T> where T : class {}
3 class Test {
4         internal static A<Test> x = new B<Test> ();
5         public static void Main () { }
6 }