1 /* { dg-do compile } */
2 
3 typedef char chars[5];
4 const chars bad_chars[] = { "" };
5 
foo()6 int foo ()
7 {
8   const chars *c = bad_chars;
9   return c[0][0];
10 }
11