aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/AddSubScope/SimpleScope.c
blob: 85294a1adc18e9655709a28f09a58fa6c0ed57a5 (plain)
1
2
3
4
5
6
7
int main() {
	int x = 23;
	{
		x = 123;
	}
	return x;
}