a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
14 lines
166 B
C#
14 lines
166 B
C#
using foo = Foo;
|
|
|
|
namespace Foo {
|
|
class A { }
|
|
}
|
|
|
|
class X {
|
|
public static void Main ()
|
|
{
|
|
foo::A a = new Foo.A ();
|
|
System.Console.WriteLine (a.GetType ());
|
|
}
|
|
}
|