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

test-76.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91377cee80a13667ff53c607ca1a515a1d3d6999 (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
25
26
27
28
29
30
31
32
33
34
35
//
// This test is used to verify that we handle functions that have
// only an array parameter
//

using System;
using System.Text;

class foo {

	static string strcat (params string [] values)
	{
		StringBuilder s = new StringBuilder ();
		
		foreach (string val in values) {
			s.Append (val);
		}

		return s.ToString ();
	}

	public static int Main ()
	{
		if (strcat ("Hello", "World") != "HelloWorld")
			return 1;

		if (strcat () != "")
			return 2;

		if (strcat ("a", "b", "c", "d", "e") != "abcde")
			return 3;

		return 0;
	}
};