testsuite: fix hyphen typos
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20021205-1.c
blob27f458751086a87e3f80551967c5f3a2363a7776
1 /* { dg-require-effective-target indirect_calls } */
3 typedef struct x x;
4 extern void *baz(char *);
5 struct x { char * (*bar) (int); };
6 static x **foo() { return ((x**)baz(0)); }
7 int xyzzy()
9 baz((*foo())->bar(0));
10 return 3;