[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0464.cs
blobbea7b5268d8b033b54a6e95b3451e44a141faef6
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;