1struct foo; 2 3typedef struct bar { 4 struct foo { 5 int foo; 6 } u; 7} bar_t; 8 9struct baz { 10 struct foo f; 11}; 12