Introduce class rtx_reader
[official-gcc.git] / gcc / testsuite / g++.dg / ext / flexary10.C
blobf2868f3bd773f941d854e3c776d6bdd888267958
1 // PR c++/68490 - error initializing a structure with a flexible array member
2 // { dg-do compile }
3 // { dg-options "-Wpedantic" }
5 struct A {
6   int n;
7   int a [];
8 };
10 struct A foo (void)
12   // Verify the initializer below is accepted for compatibility with gcc
13   // (in C mode).
14   static struct A
15     a = { 2, { 1, 0 } };   // { dg-warning "initialization of a flexible array member" }
17   return a;