[mono-api-html] Add solution.
[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         public static void Main ()
13         {
14                 A a = new global::A ();
15                 System.Console.WriteLine (a.GetType ());
16         }
17 }