Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-453.cs
1 using System;
2
3 class C {
4         internal enum Flags {
5                 Removed = 0,
6                 Public  = 1
7         }
8
9         static Flags    _enumFlags;
10                 
11         public static void Main()
12         {
13                 if ((Flags.Removed | 0).ToString () != "Removed")
14                         throw new ApplicationException ();
15         }
16 }
17