ref: 8cd0cd7c7f5ae4003bcb9e95cd8e3f81a63d30a3 dir: /tests/0054-struct.c/
int main() { struct T { int x; } s1; s1.x = 1; { struct T { int y; } s2; s2.y = 1; if (s1.x - s2.y != 0) return 1; } return 0; }