14 lines
172 B
C#
Raw Normal View History

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