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

test-453.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3543b0d7bbe05c99ccce3bd2442b77f28b95fbe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

class C {
	internal enum Flags {
		Removed	= 0,
		Public	= 1
	}

	static Flags	_enumFlags;
		
	public static void Main()
	{
		if ((Flags.Removed | 0).ToString () != "Removed")
			throw new ApplicationException ();
	}
}