blob: bea284ac9756158e6b123f7526ff3d612cfa2cb0 [file] [log] [blame]
/* PR c/54363 */
/* { dg-do compile } */
/* { dg-options "-fpermissive -std=gnu99" } */
struct S { char **a; };
void
test (void)
{
struct S b = { .a = (char **) { "a", "b" } }; /* { dg-warning "(initialization|excess elements)" } */
struct S c = { .a = (char *[]) { "a", "b" } };
}