summaryrefslogtreecommitdiff
path: root/mcs/tests/test-429.cs
blob: be9b0a19a75414ee88b01467da337258d2530bd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 ());
	}
}