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

test-200.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58b43ea695c91ff290fb4caf757b5b33e8558b70 (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
using System;

class X
{
	public static int Main ()
	{
		int x = 7;
		int y = 2;

		x = (y += 3) + 10;
		if (y != 5)
			return 1;
		if (x != 15)
			return 2;

		x += 9;
		if (x != 24)
			return 3;

		byte c = 3;
		byte d = 5;
		x = d ^= c;
		Console.WriteLine (x);

		// Implicit conversion with shift operators
		short s = 5;
                int i = 30000001;
                s <<= i;
                Console.WriteLine (s);
		Console.WriteLine ("OK");

		return 0;
	}
}