[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0458-8.cs
blobe945f5eaf01a05ff572cbd1a476da6ba8e652a9a
1 // CS0458: The result of the expression is always `null' of type `E?'
2 // Line: 15
3 // Compiler options: -warnaserror -warn:2
5 enum E
10 public class C
12 public static void Main ()
14 E e = E.V;
15 object o = null + e;