aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/mult.c
blob: 9f191070d04bd7890ce9baa092a18b58ee183a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
int main()
{
	int x = 4*2;
	int y = 7;
	int z = 14 % 8;

	z = x * y * z / z * x;
	z = z / 1;

	return z;
}