aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr54363.c
blob: aea0f9057b0847663303794385d79e477b78a35c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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" } };
}