ref: 3ab95a29ff772382f84e85eba3b037c1bd96d97c 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; }