Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr68162-1.c
bloba2c495365fed95dc147dd781a45437b082de2fad
1 /* Test handling of pointers to arrays of const elements involving a
2 typedef. PR c/68162. */
4 typedef const double cd;
5 void f (const double (*)[]);
6 void g (void) { f ((cd (*)[]) 0); }