[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0184-7.cs
blob36e144ec49717fce49bf4019ed237085caa745bc
1 // CS0184: The given expression is never of the provided (`object') type
2 // Line: 13
3 // Compiler options: -warnaserror -warn:1
5 public class Test
7 static void Foo ()
11 public static void Main()
13 bool b = Foo () is object;