eol
[mcs.git] / tests / test-externalias-07.cs
blobd0d09c67c3599b12f9da3031275d529769f1ea97
1 // Compiler options: -r:MyAssembly01=test-externalias-00-lib.dll
3 using System;
5 namespace NS
7 extern alias MyAssembly01;
9 public class MyClass
11 public static int GetInt ()
13 return MyAssembly01::GlobalClass.StaticMethod ();
18 public class Test
20 static int Main ()
22 if (NS.MyClass.GetInt () != 1)
23 return 1;
25 return 0;