[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-190.cs
1 class A
2 {
3         private int foo = 0;
4
5         class B : A
6         {
7                 void Test ()
8                 {
9                         foo = 3;
10                 }
11         }
12
13         class C
14         {
15                 void Test (A a)
16                 {
17                         a.foo = 4;
18                 }
19         }
20
21         public static void Main ()
22         { }
23 }