a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
211 B
C#
18 lines
211 B
C#
// 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 ());
|
|
}
|
|
}
|