[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-externalias-07.cs
blobbb102017a08b432a2ab90e600a4796e8ae8b025f
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 public static int Main ()
22 if (NS.MyClass.GetInt () != 1)
23 return 1;
25 return 0;