Files
linux-packaging-mono/mcs/tests/test-429.cs

18 lines
211 B
C#
Raw Normal View History

// Compiler options: -warn:0
using global = Foo;
namespace Foo {
class A { }
}
class A { }
class X {
public static void Main ()
{
A a = new global::A ();
System.Console.WriteLine (a.GetType ());
}
}