2004-08-27 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs0031.cs
1 // cs0031.cs : Constant value '256' cannot be converted to a byte
2 // Line : 7
3
4 public class Blah {
5
6         public enum MyEnum : byte {
7                 Foo = 256,
8                 Bar
9         }
10
11         public static void Main ()
12         {
13         }
14 }