aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/AddSubScope/SimpleAdd_2.c
blob: 02b052b7234e38b0df5def644378d5943c4d0a3a (plain)
1
2
3
4
5
6
7
int main() {
	int x = 4;

	x = x + 1;

	return x;
}