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

test-850.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a70c9912322495e38ae7873534d974ceee8a0c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class C
{
	public static int Main ()
	{
		if (F ("x") != 1)
			return 1;

		return 0;
	}

	static int F (string s, params string[] strings)
	{
		return 1;
	}

	static int F (params string[] strings)
	{
		return 2;
	}
}