(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
funcptr-1.c
       1  extern int (*gp)(const char*);
       2  
       3  int
       4  g (const char* d)
       5  {
       6    printf ("g");
       7    return 0;
       8  }
       9  
      10  f ()
      11  {
      12    int errcnt=0;
      13  
      14    if (gp != g)
      15      {
      16        printf ("f");
      17        errcnt++;
      18      }
      19  }