1typedef char h[10];
2
3typedef struct {
4	int i;
5	char *c;
6} fh;
7
8struct foo {
9	fh h;
10	struct {
11		int x;
12		int y;
13	} fl;
14};
15