20050202-1.c   [plain text]


/* From PR 19578.  */
extern void foo (void) __attribute__((noreturn));

void
g (void)
{
  void (*f) (void) = foo;
  f ();
  f ();
}