[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0464-5.cs
bloba06f57a77920c259d67a6753c7fac5263ff392ba
1 // CS0464: The result of comparing type `E?' with null is always `false'
2 // Line: 14
3 // Compiler options: -warnaserror
5 enum E
9 class X
11 public static void Main ()
13 E u = 0;
14 var b = u < (E?) null;