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

test-428.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85d8e37f74b475636d35311651ea44d1a564f277 (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 ()
	{
		globalA a = new global::A ();
		System.Console.WriteLine (a.GetType ());
	}
}