"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0266-28.cs
blob364ae8ed9ba647e1c29587e60ded1d6fc53a7d1d
1 // CS0266: Cannot implicitly convert type `int?' to `E'. An explicit conversion exists (are you missing a cast?)
2 // Line: 13
4 enum E
8 class C
10 public static void Main ()
12 E e = 0;
13 E r = e - null;