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