ref: c68d4e43cd22c18199c1b5ea7468e3d9b5b2ad97 dir: /tests/execute/0019-selfrefstruct.c/
int main() { struct S { struct S *p; int x; } s; s.x = 0; s.p = &s; return s.p->p->p->p->p->x; }