blob: ca50fce707d6a0b8139b38773e7ead47c484d6c4 [file] [log] [blame]
void h(void (*)(void));
_Complex int g (void)
{
_Complex int x;
void f(void)
{
x = x + x;
}
h(f);
return x;
}