Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

25 lines
366 B
C#

#define DEBUG
using System;
using System.Text;
using System.Diagnostics;
class Z
{
static public void Test2 (string message, params object[] args)
{
}
static public void Test (string message, params object[] args)
{
Test2 (message, args);
}
public static int Main ()
{
Test ("TEST");
Test ("Foo", 8);
Test ("Foo", 8, 9, "Hello");
return 0;
}
}