fix ET tests for 4.0
[mcs.git] / errors / cs0037-3.cs
blob379127ffd7358129a3700d3111ea15083e7ca27c
1 // cs0037-2.cs: Cannot convert null to `byte' because it is a value type
2 // Line : 7
4 public class Blah {
6 public enum MyEnum : byte {
7 Foo = null,
8 Bar
11 public static void Main ()