[Tests] Fix Mono.Data.Tds tests on iOS (#5501)
[mono.git] / mcs / errors / cs0464-4.cs
1 // CS0464: The result of comparing type `int?' with null is always `false'
2 // Line: 10
3 // Compiler options: -warnaserror -warn:2
4
5 class C
6 {
7         public static void Main ()
8         {
9                 int? k = 1;
10                 var x = k > null;
11         }
12 }