modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr37913.c (about)

     1  /* PR middle-end/37913 */
     2  
     3  void foo (void) __attribute__ ((noreturn));
     4  
     5  static int __attribute__ ((noreturn))
     6  bar (void)
     7  {
     8    foo ();
     9  }
    10  
    11  void
    12  baz (void)
    13  {
    14    int i = bar ();
    15  }