[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1503.cs
blob800722ea6c17194c51f5513632acc0e18af8c8fe
1 // CS1503: Argument `#1' cannot convert `int' expression to type `bool'
2 // Line: 15
4 class A
6 public static void Foo (bool test)
11 class B
13 public static void Main()
15 A.Foo (1);