[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0019-72.cs
blob90cbae7ebdd848c2985b5e01d2f2f2c01400d958
1 // CS0019: Operator `??' cannot be applied to operands of type `void' and `throw expression'
2 // Line: 20
4 class C
6 public static void Main ()
8 var s = Main () ?? throw null;