[xbuild] More tweaks for portable debug mode
[mono-project.git] / mcs / errors / cs0464-4.cs
blob0fdf6079bf6b85aae9f0b42d6dc47e1b31d18060
1 // CS0464: The result of comparing type `int?' with null is always `false'
2 // Line: 10
3 // Compiler options: -warnaserror -warn:2
5 class C
7 public static void Main ()
9 int? k = 1;
10 var x = k > null;