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

test-430.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf3014012953e45644f9c709d994e6ebb48fdf64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using globalA = A;

class A { }

class X {
	class A { }
	static void Main ()
	{
		global::A a = new globalA ();
		System.Console.WriteLine (a.GetType ());
	}
}