1 typedef struct{int x;} bar;
foo(void)2 bar foo (void)
3 {
4   bar x;
5   return x;
6 }
7 
8