ref: fc104bb2dabf97b04570992b6c3a6082f0c1aec2 dir: /tests/0017-struct.c/
int main() { struct { int x; int y; } s; s.x = 3; s.y = 5; return s.y - s.x - 2; }