1typedef void ft(int);
2volatile ft f;
3void f2(ft *p __attribute__((noreturn)))
4{
5  p = f;
6}
7