"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0458-16.cs
blobf43cea277af115012d4fb35043937c9f93f07572
1 // CS0458: The result of the expression is always `null' of type `int?'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
5 public class C
7 public static void Main ()
9 int? s = null;
10 int? v = s + null;