2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-642.cs
blobd5e3a18f5e916ffdae03045c98fe1becb51f18ac
1 enum E : byte { }
3 class C
5 static E e;
6 static byte b;
7 static ushort u;
9 public static int Main ()
11 b |= (byte) e;
12 u |= (ushort) e;
13 return b;