(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20021205-1.c
       1  /* { dg-require-effective-target indirect_calls } */
       2  
       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()
       8  {
       9      baz((*foo())->bar(0));
      10      return 3;
      11  }