[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-423.cs
1 using System;
2
3 namespace MonoTest
4 {
5         public class A<TA>
6         {
7                 class B<TB>
8                 {
9                         static void foo ()
10                         {
11                         }
12
13                         class C
14                         {
15                                 static void bar ()
16                                 {
17                                         foo ();
18                                         B<C>.foo ();
19                                         A<C>.B<C>.foo ();
20                                 }
21                         }
22                 }
23         }
24
25         class Program
26         {
27                 public static void Main ()
28                 {
29                 }
30         }
31 }
32