modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/930608-1.c (about)

     1  double f (double a) {}
     2  double (* const a[]) (double) = {&f};
     3  
     4  main ()
     5  {
     6    double (*p) ();
     7    p = &f;
     8    if (p != a[0])
     9      abort ();
    10    exit (0);
    11  }