[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0190-2.cs
blobca9733de0fa48719fd9a651612f2e10bc21e116b
1 // CS0190: The __arglist construct is valid only within a variable argument method
2 // Line: 11
4 public class Test
6 public static void Foo (__arglist)
8 System.RuntimeArgumentHandle o;
10 System.Action a = delegate () {
11 o = __arglist;
14 a ();
18 public static void Main ()
20 Foo (__arglist ());