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

test-328.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0bc4c42924095b47f4ec0d4a721acbd935e6121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace X {
	enum Z { x };
}
namespace A {
	using Y = X;
	namespace B {
		using Y;
		class Tester {
			internal static Z z = Z.x;
			static void Main() { }
		}
	}
}