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