[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-266.cs
1 class Test<T>
2 {
3         int priv;
4         private sealed class Inner<U>
5         {
6                 Test<U> test;
7                 void Foo ()
8                 {
9                         test.priv = 0;
10                 }
11         }
12 }
13
14 class Test { public static void Main () { } }