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

	{
		{
			z = x + y + x + y - x;
		}
	}

	z = 2 + z - 2;
	
	return z;
}