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

test-12.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 245a18149813a61056c78ebb31ee8e403b2c2402 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Tests the ?: operator and the string concatenation
 */

using System;
class X {
	public static int Main (string [] args)
	{
		string a = "hello";
		string b = "1";
		string c = a + b;
		string d = a + 1;
		string y;
		
		if (c != d)
			return 1;
		if (d != (a + b))
			return 2;
		if (d != x (a, b))
			return 3;
		if (d != x (a, 1))
			return 4;

		y = c == d ? "equal" : "not-equal";
		if (y != "equal")
			return 5;
		y = b == a ? "oops" : "nice";
		if (y != "nice")
			return 6;
		
		string [] blah = { "A"+'B'+"C" };
		if (blah [0] != "ABC")
			return 7;
		
		Console.WriteLine (c);
		return 0;
	}

	static string s (string a, int o)
	{
		return a + o;
	}
	static string x (string s, object o)
	{
		return s + o;
	}

}