summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr68162-1.c
blob: a2c495365fed95dc147dd781a45437b082de2fad (plain)
1
2
3
4
5
6
/* Test handling of pointers to arrays of const elements involving a
   typedef.  PR c/68162.  */

typedef const double cd;
void f (const double (*)[]);
void g (void) { f ((cd (*)[]) 0); }