Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-429.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 ());
	}
}