14 lines
166 B
C#
Raw Permalink Normal View History

using foo = Foo;
namespace Foo {
class A { }
}
class X {
public static void Main ()
{
Foo.A a = new foo::A ();
System.Console.WriteLine (a.GetType ());
}
}