[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-named-10.cs
blob6434c836612c7989e6fdb519b37760815ff4c7e5
1 using System;
3 internal class Program
5 public static void Main ()
7 Method (1, 2, paramNamed: 3);
10 static void Method (int p1, int paramNamed, int p2)
12 throw new ApplicationException ();
15 static void Method (int p1, int p2, object paramNamed)