* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-initlist6.C
blob8c344c0b28f88a118f70b2f4df90bfa46c33849b
1 // PR c++/55419
2 // { dg-do compile { target c++11 } }
4 struct P
6   P () = default;
7   explicit constexpr P (int x) : p (x) {}
8   int p;
9 };
11 struct Q
13   constexpr Q () : q (0x7f) {}
14   int q;
17 struct R
19   Q q;
20   P p;
23 void
24 foo (R *x)
26   *x = {};