1 2 3 4 5 6 7 8 9 10
/* From PR 19578. */ extern void foo (void) __attribute__((noreturn)); void g (void) { void (*f) (void) = foo; f (); f (); }