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

test-227.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c6d4c72d83ee4a15ee2536f926c614455e050fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using Mat = A.ABC.BMT;

namespace A
{
	namespace ABC
	{
		public enum BMT
		{
			X,
		}
	}

	class T
	{
		public enum Mat
		{
			A = 5,
			B
		}

		public static void Main() {
			Mat c;
			c = Mat.A;
		}
	}
}