cleol
[mcs.git] / errors / gcs0464.cs
blobb6ae39620265cc6b22e42507f88276f187fbe23d
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;