blob: b3f81764538336c8cb291e6f93589fe42d753ecc [file] [log] [blame]
/* From PR 19578. */
extern void foo (void) __attribute__((noreturn));
void
g (void)
{
void (*f) (void) = foo;
f ();
f ();
}