"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0037-3.cs
blob69ce4fcdee38c4db0a6732dd80d72f64c2c0ff98
1 // CS0037: 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 ()