#include <stdio.h>

typedef struct foo { int foo; } foo;

int main(void)
{
    foo foo = { 1 };
    printf("%i\n", foo.foo);
}
