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