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