2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / mem-init-aggr1.C
blob51a2ede310c04ab814a455232668c9c78544f760
1 // PR c++/65815
2 // { dg-do compile { target c++11 } }
4 struct array {
5   int data [2];
6 };
8 struct X : array {
9   X() : array{ 1, 2 } { }