aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00053.c
blob: 995209c28d3d7873a665a7771b4fcc9a42a4ef4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
int
main()
{
	struct T { int x; } s1;
	s1.x = 1;
	{
		struct T { int y; } s2;
		s2.y = 1;
		if (s1.x - s2.y != 0)
			return 1;
	}
	return 0;
}