(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr61602.c
       1  int a;
       2  int *b = &a, **c = &b;
       3  int
       4  main ()
       5  {
       6    int **d = &b;
       7    *d = 0;
       8  }