1/* { dg-require-effective-target trampolines } */
2
3void 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}
14