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: 1391b2972629c9a857cc85da4e89040ed3f0ec82 (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 ();
	static void Main ()
	{
		System.Console.WriteLine (a.GetType ());
	}
}