1typedef struct foo foo_t;
2foo_t x;
3struct foo {
4  int i;
5};
6
7foo_t x = { 10 };
8