PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / flexary29.C
bloba696fd9804f1dab7e7ff8e183a8c984db3e774e0
1 // PR c++/84578
2 // { dg-do compile { target c++11 } }
3 // { dg-options -Wno-pedantic }
5 struct A
7   constexpr A() : i(), x() {}
8   int i;
9   char x[];
12 A a;