shithub: scc

ref: 0645a868520feb0fac8932b08b6c4e1258b58c0c
dir: /tests/execute/0019-selfrefstruct.c/

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