aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/TestOperators.java
blob: de384122649c79560e9a6dcd2dba2c8ba14f2869 (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
// unchanged
class TestOperators {
	int x = 10;
	public void test() {
		x = 12;
		int a = +x;
		boolean d = true;
		boolean e = false;
		boolean b;
		a = -x;
		b = !d;
		a = ~x;
		a = ++x;
		a = --x;
		a = x++;
		a = x--;
		b = d || e;
		b = d && e;
		a = x | a;
		a = x ^ a;
		a = x & a;
		b = a == x;
		b = a != x;
		b = a < x;
		b = a > x;
		b = a <= x;
		b = a >= x;
		a = a << x;
		a = a >> x;
		a = a >>> x;
		a = a + x;
		a = a - x;
		a = a * x;
		a = a / x;
		a = a % x;
		a |= x;
		a ^= x;
		a &= x;
		a <<= x;
		a >>= x;
		a >>>= x;
		a += x;
		a -= x;
		a *= x;
		a /= x;
		a %= x;
		a = a > x ? 1 : 0;
	}
}