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 (*)[]); g(void)6 void g (void) { f ((cd (*)[]) 0); } 7