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