struct S { int s; };

int main()
{
    struct S t;
    return t.s;
}
