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

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