aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00019.c
blob: 9383c2fef4ecbcfae864395c1a896f0bcd2f7262 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
int
main()
{
	struct S { struct S *p; int x; } s;
	
	s.x = 0;
	s.p = &s;
	return s.p->p->p->p->p->x;
}