[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-839.cs
1 namespace N1
2 {
3         using IndexingChain = N2.D.IndexingChain;
4
5         class M
6         {
7                 public static void Main ()
8                 {
9                 }
10         }
11 }
12
13 namespace N2
14 {
15         using N3;
16
17         public class D : C
18         {
19         }
20 }
21
22 namespace N3
23 {
24         using System.Collections.Generic;
25
26         public class C
27         {
28                 class Foo : List<int>
29                 {
30                 }
31
32                 public class IndexingChain
33                 {
34                 }
35         }
36
37 }
38