1 // PR c++/65815
2 // { dg-do compile { target c++11 } }
3 
4 struct array {
5   int data [2];
6 };
7 
8 struct X {
9   array a = { 1, 2 };
10 };
11