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

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

namespace Foo {
	class A { }
}

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