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: b9a27b299174486ff4fb0b1ac694cd6a672e77fb (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;
			public static void Main() { }
		}
	}
}