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

bug19.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15755b6faaa1fb8b3e860b901b992278b40ece4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace N1
{	
	public enum A
	{
		A_1, A_2, A_3
	}

	public class B
	{
		const A b = A.A_1;
	}
}