[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0472-3.cs
1 // CS0472: The result of comparing value type `int' with null is always `true'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
4
5 public class X
6 {
7         public static void Compute (int x)
8         {
9                 if (true && x != null)
10                         return;
11         }
12 }