2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-544.cs
blob5f93ad0dc0f0543382a771c3490c5b9649db873e
1 enum ByteEnum : byte {
2 One = 1,
3 Two = 2
6 class X {
7 static void Main ()
9 ByteEnum b = ByteEnum.One;
11 switch (b){
12 case ByteEnum.One : return;
13 case ByteEnum.One | ByteEnum.Two: return;