aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/AddSubScope/VariableAdd.c
blob: e16ed8ba72af3543091c4836b0b8d866edbb7857 (plain)
1
2
3
4
5
6
7
8
9
10
11
int main() {
	int x = 23;
	int y = 52;

	x = x + y;
	x = x + x;
	y = x - y;
	x = x - y;

	return x;
}