cleol
[mcs.git] / errors / gcs0464-2.cs
blob4009b38a33221434285df4e510faae5a130f9581
1 // CS0464: The result of comparing type `int?' with null is always `false'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
5 public class X
7 public static bool Compute (int? x)
9 return x >= null;