[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-externalias-06.cs
1 // Compiler options: -r:MyAssembly01=test-externalias-00-lib.dll -r:MyAssembly02=test-externalias-01-lib.dll
2
3 extern alias MyAssembly01;
4 extern alias MyAssembly02;
5 using System;
6
7 // It must be possible to define a ns with the same name
8 // of the aliases
9 namespace MyAssembly01
10 {
11         public class Test
12         {
13         }
14
15         namespace Namespace1
16         {
17                 public class Test
18                 {
19                 }
20         }
21 }
22
23 namespace MyAssembly02
24 {
25         public class Test
26         {
27         }
28
29         namespace Namespace1
30         {
31                 public class Test
32                 {
33                 }
34         }
35 }
36
37 public class Test
38 {
39         public static void Main ()
40         {
41         }
42 }
43