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 ());
}
}