(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr27889.c
       1  /* { dg-require-effective-target trampolines } */
       2  
       3  void h(void (*)(void));
       4  _Complex int g (void)
       5  {
       6    _Complex int x;
       7    void f(void)
       8    {
       9       x = x + x;
      10    }
      11    h(f);
      12    return x;
      13  }