(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr40556.c
       1  struct A {};
       2  
       3  struct A foo()
       4  {
       5    return foo();
       6  }
       7  
       8  void bar()
       9  {
      10    foo();
      11  }