linux-packaging-mono/mcs/tests/test-externalias-09.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

17 lines
261 B
C#

// Compiler options: -r:MyAssembly_01=test-externalias-00-lib.dll
extern alias MyAssembly_01;
using System;
using SameNamespace = MyAssembly_01;
public class Test
{
public static int Main ()
{
SameNamespace.GlobalClass.StaticMethod ();
return 0;
}
}