ref: 4be5b671982310f44410c71e58e88f2f2d8d2ef5 dir: /tests/0018-structptr.c/
int main() { struct S { int x; int y; } s; struct S *p; p = &s; s.x = 1; p->y = 2; return p->y + p->x - 3; }