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