codeowners update
[mono.git] / mcs / tests / test-544.cs
1 enum ByteEnum : byte {
2         One = 1,
3         Two = 2
4 }
5
6 class X {
7         public static void Main ()
8         {
9                 ByteEnum b = ByteEnum.One;
10                 
11                 switch (b){
12                 case ByteEnum.One : return;
13                 case ByteEnum.One | ByteEnum.Two: return;
14                 }
15         }
16 }
17