ref: e01986d6087e1264c1865596d7fe02cadbec6296 dir: /tests/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; }