Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0037-3.cs
1 // CS0037: Cannot convert null to `byte' because it is a value type
2 // Line : 7
3
4 public class Blah {
5
6         public enum MyEnum : byte {
7                 Foo = null,
8                 Bar
9         }
10
11         public static void Main ()
12         {
13         }
14 }