modernc.org/cc@v1.0.1/testdata/gcc-6.3.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  }