for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0472.cs
blob01d70056f28994c10712effd56f727c5dc7d4a0c
1 // CS0472: The result of comparing value type `int' with null is always `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;