[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-544.cs
blobd56c5b2354f05532dad1a615399dc17fff9adaed
1 enum ByteEnum : byte {
2 One = 1,
3 Two = 2
6 class X {
7 public static void Main ()
9 ByteEnum b = ByteEnum.One;
11 switch (b){
12 case ByteEnum.One : return;
13 case ByteEnum.One | ByteEnum.Two: return;