ref: 38da5860529e4b248b4c80d6c539e1eab5bb3bc4 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; }