* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor11.C
blobe22c55f7a92502561b40601a6ebd9ee2f91a15b6
1 // PR c++/55856
2 // { dg-do compile { target c++11 } }
4 struct A
6   A(const char *);
7 };
9 template <class T>
10 struct B
12   T t;
13   template <class U> constexpr B(U&& u): t(u) { }
16 B<A&&> b("");