Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-153.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5ce7f474d8430d8af1ae549389ed5135d90d4cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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;
	}
}