URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20021205-1.c] - Rev 12
Compare with Previous | Blame | View Log
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; }