cleol
[mcs.git] / tests / test-externalias-04.cs
blob81ff97e0c20ab05547841dd70211095c004b44ed
1 // Compiler options: -r:MyAssembly01=test-externalias-00-lib.dll -r:MyAssembly02=test-externalias-01-lib.dll
3 extern alias MyAssembly01;
4 extern alias MyAssembly02;
5 using System;
7 public class Test
9 static int Main ()
11 if (MyAssembly01::Namespace1.Namespace2.MyClass2.StaticMethod () != 1)
12 return 1;
13 if (MyAssembly02::Namespace1.Namespace2.MyClass2.StaticMethod () != 2)
14 return 1;
16 if (new MyAssembly01::Namespace1.Namespace2.MyClass2 ().InstanceMethod () != 1)
17 return 1;
18 if (new MyAssembly02::Namespace1.Namespace2.MyClass2 ().InstanceMethod () != 2)
19 return 1;
21 return 0;