[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0266-23.cs
blobf10be25a49619471aa316d9cb8f3ff13cc680a13
1 // CS0266: Cannot implicitly convert type `object' to `bool'. An explicit conversion exists (are you missing a cast?)
2 // Line: 9
4 class X
6 static void Main ()
8 object o = true;
9 bool b = (o ?? string.Empty);