cleol
[mcs.git] / errors / gcs0472-3.cs
blob71f146c517eccd2e4be9e3298a6b71e431060ecb
1 // CS0472: The result of comparing value type `int' with null is `true'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
5 public class X
7 public static void Compute (int x)
9 if (true && x != null)
10 return;