[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1594-3.cs
blob672f6839e2ce29e3e6a0484a495b2373e6604ad2
1 // CS1594: Delegate `Test.Foo' has some invalid arguments
2 // Line: 10
4 namespace Test {
5 delegate void Foo (string x, params string [] args);
6 class Testee {
7 static void Bar (string x, params string [] args) {}
8 static void Main () {
9 Foo bar = new Foo (Bar);
10 bar ("x'' = ", "Foo", 5, 3.6);