(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr68162-1.c
       1  /* Test handling of pointers to arrays of const elements involving a
       2     typedef.  PR c/68162.  */
       3  
       4  typedef const double cd;
       5  void f (const double (*)[]);
       6  void g (void) { f ((cd (*)[]) 0); }