modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr40556.c (about)

     1  struct A {};
     2  
     3  struct A foo()
     4  {
     5    return foo();
     6  }
     7  
     8  void bar()
     9  {
    10    foo();
    11  }