1struct S { int s; };
2
3int main()
4{
5    struct S t;
6    return t.s;
7}
8