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

test-323.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0ce8685a222a95a33beaea90d613fc3f916512e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class X {
	enum A : byte {
		x, y, z
	}
	const A foo = A.x | A.y;
	
	public static void Main () {}
}