[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-153.cs
bloba5ce7f474d8430d8af1ae549389ed5135d90d4cf
1 #define DEBUG
2 using System;
3 using System.Text;
4 using System.Diagnostics;
6 class Z
8 static public void Test2 (string message, params object[] args)
12 static public void Test (string message, params object[] args)
14 Test2 (message, args);
17 public static int Main ()
19 Test ("TEST");
20 Test ("Foo", 8);
21 Test ("Foo", 8, 9, "Hello");
22 return 0;