
struct foo_s
{
    int a;
    int b;
};

void main(void)
{
    struct foo_s bar = {};
    /* should never return */
} /* END OF main */
