[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1503-9.cs
bloba81cb9586b1a4f082a881d37ea46c23cf6acafb2
1 // CS1503: Argument `#1' cannot convert `__arglist' expression to type `object'
2 // Line: 14
4 using System;
6 class Program
8 static void Foo (object o)
12 static void Main ()
14 Foo (__arglist (null));