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

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

namespace Foo {
	class A { }
}

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