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); }
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); }