aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/Add.c
blob: b3b1f056e9e71de7345072fff00954ab6d3f84b9 (plain)
1
2
3
4
5
6
7
8
9
int main() {
	int x = 8;
	int y = 29;
	int z = 84;

	z = (9 + 2 + 3) / 2 + 3 / (2 + 1);

	return z;
}