1 // PR c++/60951
2 // { dg-do compile { target c++11 } }
3 
4 struct Foo {
membFoo5   constexpr Foo(int x = 0) : memb(x) {}
6   int memb;
7 };
8 
9 struct FooContainer {
10   Foo foo[2];
11 };
12 
fubar()13 void fubar() {
14   int nonConst = 0;
15   FooContainer fooContainer;
16   fooContainer = { { 0, nonConst } };
17 }
18