ref: 493d1fe087d5b30f9a74b6e51697e10ea6fc9ad8 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; }