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