1 // PR c++/63707
2 // { dg-do compile { target c++11 } }
3 
4 struct Child
5 {
6   Child (int);
7   ~Child ();
8   Child (const Child &) = delete;
9 };
10 
11 struct Parent
12 {
ParentParent13   Parent () : children {{5}, {7}} {}
14 
15   Child children[2];
16 };
17