Merged into single file, added assertions
[mono.git] / mcs / tests / test-429.cs
1 // Compiler options: -warn:0
2
3 using global = Foo;
4
5 namespace Foo {
6         class A { }
7 }
8
9 class A { }
10
11 class X {
12         static void Main ()
13         {
14                 A a = new global::A ();
15                 System.Console.WriteLine (a.GetType ());
16         }
17 }