Merge pull request #5428 from kumpera/wasm-support-p2
[mono.git] / mcs / tests / test-externalias-05.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 public class Test
8 {
9         public static void Main ()
10         {
11                 MyAssembly01::GlobalClass.JustForFirst ();
12                 MyAssembly02::GlobalClass.JustForSecond ();
13                 
14                 MyAssembly01::Namespace1.MyClass1.JustForFirst ();
15                 MyAssembly02::Namespace1.MyClass1.JustForSecond ();
16         }
17 }
18