summaryrefslogtreecommitdiff
path: root/support/regression/qct/0019-selfrefstruct.c
blob: 768c36fc3b7de8973d76a41dc2566ab1b3850cb9 (plain)
1
2
3
4
5
6
7
8
9
10
11

int
main()
{
	struct S { struct S *p; int x; } s;
	
	s.x = 0;
	s.p = &s;
	return s.p->p->p->p->p->x;
}