[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / test-429.cs
blobbe9b0a19a75414ee88b01467da337258d2530bd3
1 // Compiler options: -warn:0
3 using global = Foo;
5 namespace Foo {
6 class A { }
9 class A { }
11 class X {
12 public static void Main ()
14 A a = new global::A ();
15 System.Console.WriteLine (a.GetType ());