2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0472.cs
blobf76a1bcf8367ef0167fb14be3d73857e083276c5
1 // CS0472: The result of comparing value type `int' with null is `true'
2 // Line: 8
3 // Compiler options: -warnaserror -warn:2
5 public class X {
6 public static bool Compute (int x)
8 return x != null;