Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / init / array38.C
blobbf097742d9baea2d3a9dbf7ece6272fd6c513bb5
1 // PR c++/64314
2 // { dg-do compile { target c++11 } }
4 struct C { C(); ~C(); };
5 struct A {
6   int i;
7   C c[1];
8 } a {};