aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr28865.c
blob: ef0eba5492d38467094bfceb5042d63f32018ec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct var_len
{
  int field1;
  const char field2[];
};

/* Note - strictly speaking this array declaration is illegal
   since each element has a variable length.  We used to allow
   this because it was used in existing code.
   Since PR64417 we reject this code.  */
static const struct var_len var_array[] = 
{
  { 1, "Long exposure noise reduction" }, /* { dg-error "initialization of flexible array member" } */
  { 2, "Shutter/AE lock buttons" }, /* { dg-error "initialization of flexible array member" } */
  { 3, "Mirror lockup" } /* { dg-error "initialization of flexible array member" } */
};