blob: 73648e94951512caa851544859bef13f31d0aa9a [file] [log] [blame]
typedef struct x x;
extern void *baz(char *);
struct x { char * (*bar) (int); };
static x **foo() { return ((x**)baz(0)); }
int xyzzy()
{
baz((*foo())->bar(0));
return 3;
}