(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr81203.c
       1  /* { dg-do compile } */
       2  
       3  int a;
       4  int b()
       5  {
       6    int c, d;
       7    if (a)
       8      d = b();
       9    return 1 + c + d;
      10  }