w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0031-4.cs
bloba899c7654ea03f184646371590d4bf7388d75d95
1 // CS0031: Constant value `256' cannot be converted to a `byte'
2 // Line : 7
4 public class Blah {
6 public enum MyEnum : byte {
7 Foo = 256,
8 Bar
11 public static void Main ()