* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-aggr1.C
blob7e4da11a2df0f8bafe1c43d4001c5e19118fb603
1 // PR c++/60951
2 // { dg-do compile { target c++11 } }
4 struct Foo {
5   constexpr Foo(int x = 0) : memb(x) {}
6   int memb;
7 };
9 struct FooContainer {
10   Foo foo[2];
13 void fubar() {
14   int nonConst = 0;
15   FooContainer fooContainer;
16   fooContainer = { { 0, nonConst } };