[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-058.cs
1 class Foo {
2         public static void Main () {}
3 }
4
5 class Foo <T> {
6         static Foo <T> x;
7         static Foo <T> Blah { get { return x; } }
8 }