• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #define __noreturn __attribute__((__noreturn__))
2 
3 void __noreturn fun(void);
4 
5 _Static_assert([void (__noreturn *)(void)] == [typeof(&fun)], "");
6 
7 /*
8  * check-name: function-attribute-inner
9  */
10