ref: d82055a0e5f8f818fb086b16f28d05d65b339cad dir: /tests/0024-typedefstruct.c/
typedef struct { int x; int y; } s; s v; int main() { v.x = 1; v.y = 2; return 3 - v.x - v.y; }