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