retag
[mcs.git] / errors / cs0543.cs
blob9f5987c44d26deb574d2bc7013dfa45deabb1319
1 // cs0543.cs: The enumerator value `Blah.MyEnum.Bar' is too large to fit in its type `byte'
2 // Line : 9
4 public class Blah {
6 public enum MyEnum : byte {
7 Foo = 255,
8 Bar
11 public static void Main ()