Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-array13.C
blob92fe97164cd33660408615a8de46c6c5ae1a02b7
1 // PR c++/63707
2 // { dg-do compile { target c++11 } }
4 struct Child
6   Child (int);
7   ~Child ();
8   Child (const Child &) = delete;
9 };
11 struct Parent
13   Parent () : children {{5}, {7}} {}
15   Child children[2];