* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor13.C
blob299db88326834a8951ffc4f12e25f550ce9ed698
1 // PR c++/55753
2 // { dg-do compile { target c++11 } }
4 struct A
6   double r,i;
7   constexpr A(double r = 0.0, double i = 0.0): r(r), i(i) {}
8 };
10 template <typename Tp>
11 struct B {
12   B() {
13     A((true ? 1.0 : A()));
14   }