1typedef struct x x;
2extern void *baz(char *);
3struct x { char * (*bar) (int); };
4static x **foo() { return ((x**)baz(0)); }
5int xyzzy()
6{
7    baz((*foo())->bar(0));
8    return 3;
9}
10