Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0543.cs
1 // CS0543: The enumerator value `Blah.MyEnum.Bar' is outside the range of enumerator underlying type `byte'
2 // Line : 8
3
4 public class Blah
5 {
6         public enum MyEnum : byte {
7                 Foo = 255,
8                 Bar
9         }
10 }