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

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

	return z;
}