2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20021205-1.c
blob73648e94951512caa851544859bef13f31d0aa9a
1 typedef struct x x;
2 extern void *baz(char *);
3 struct x { char * (*bar) (int); };
4 static x **foo() { return ((x**)baz(0)); }
5 int xyzzy()
7 baz((*foo())->bar(0));
8 return 3;