view gcc/testsuite/gcc.dg/pr68162-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

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