cleol
[mcs.git] / tests / test-453.cs
blob3543b0d7bbe05c99ccce3bd2442b77f28b95fbe0
1 using System;
3 class C {
4 internal enum Flags {
5 Removed = 0,
6 Public = 1
9 static Flags _enumFlags;
11 public static void Main()
13 if ((Flags.Removed | 0).ToString () != "Removed")
14 throw new ApplicationException ();