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

test-38.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24997e8dd06238e703bd86f500e929e7edea5c93 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
class X {
	public int v1, v2;
	int y;
	
	public int this [int a] {
		get {
			if (a == 0)
				return v1;
			else
				return v2;
		}

		set {
			if (a == 0)
				v1 = value;
			else
				v2 = value;
		}
	}

	public int Foo () {
		return 8;
	}

	public int Bar {
		get {
			return y;
		}

		set {
			y = value;
		}
	}
}

class Y {
	public uint v1, v2;
	uint y;
	
	public uint this [uint a] {
		get {
			if (a == 0)
				return v1;
			else
				return v2;
		}

		set {
			if (a == 0)
				v1 = value;
			else
				v2 = value;
		}
	}

	public uint Foo () {
		return 8;
	}

	public uint Bar {
		get {
			return y;
		}

		set {
			y = value;
		}
	}
}

class Test {

	public static int Main ()
	{
		X x = new X ();
		Y y = new Y ();
		int b;

		x [0] = x [1] = 1;
		x [0] = 1;
		if (x.v1 != 1)
			return 1;

		if (x [0] != 1)
			return 2;

		double d;
		long l;

		d = l = b = x [0] = x [1] = x.Bar = x [2] = x [3] = x [4] = x.Foo ();

		if (x.Bar != 8)
			return 3;

		if (l != 8)
			return 4;

		uint e, f;
		e = 5;
		e = f = 8;

		if (e != 8)
			return 5;

		y [0] = y [1] = 9;
		y [0] = y.Bar = 12;

		if (y.Bar != 12)
			return 6;

		y.Bar = 15;
		if (y.Bar != 15)
			return 7;

		return 0;
		
	}
}