blob: aea0f9057b0847663303794385d79e477b78a35c [file] [log] [blame]
/* PR c/54363 */
/* { dg-do compile } */
/* { dg-options "-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" } };
}