[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0543.cs
blob741277eabc543f41f2f31d1877c2d59f09caa52b
1 // CS0543: The enumerator value `Blah.MyEnum.Bar' is outside the range of enumerator underlying type `byte'
2 // Line : 8
4 public class Blah
6 public enum MyEnum : byte {
7 Foo = 255,
8 Bar