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

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

class C
{
	//
	// All the operations should be reduced
	//
	public static void ZeroBasedReductions ()
	{
		int a = 1;
		
		a = a + 0;
		a = a - 0;
		a = a | 0;
		a = 0 + a;
		a = 0 | a;
		
		a = a >> 0x40;
	}
	
	public static void ZeroBasedReductionsWithConversion ()
	{
		byte b = 0;
		b |= 0;
		b += 0;
		b -= 0;
		b *= 1;
	}
	
	public static int Main ()
	{
		ZeroBasedReductions ();
		ZeroBasedReductionsWithConversion ();
		
		int a = 9;
		a = 0 - a;
		if (a != -9)
			return 1;
		
		return 0;
	}
}