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: b4d94871a5284db2a95baa0b6666eb8dd0f2d61a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using globalA = A;

class A { }

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