linux-packaging-mono/mcs/tests/test-externalias-09.cs

17 lines
261 B
C#
Raw Normal View History

// 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;
}
}