Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0458-14.cs
blob865b7ba73d64a47fabec43d85ec4508ac24a9510
1 // CS0458: The result of the expression is always `null' of type `int?'
2 // Line: 14
3 // Compiler options: -warnaserror -warn:2
5 public enum E
9 class C
11 public static void Main ()
13 E? e = null;
14 var res = e - null;