(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
950906-1.c
       1  g (int i)
       2  {
       3  }
       4  
       5  f (int i)
       6  {
       7    g (0);
       8    while ( ({ i--; }) )
       9      g (0);
      10  }
      11  
      12  main ()
      13  {
      14    f (10);
      15    exit (0);
      16  }