[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0019-47.cs
blobe583c04aaad977c5aa3bd7d382081a06238d0c5a
1 // CS0019: Operator `??' cannot be applied to operands of type `null' and `anonymous method'
2 // Line: 8
4 delegate void D ();
6 class F
8 D d = null ?? delegate { };