dlr bug
[mcs.git] / tests / test-153.cs
blob29419075afb157d05dc422c3294f15e15ddb0edd
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 static int Main ()
19 Test ("TEST");
20 Test ("Foo", 8);
21 Test ("Foo", 8, 9, "Hello");
22 return 0;