* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-51707.C
blobae02a31c540b1a5ca42faae93ea581c38c956a7a
1 // PR c++/51707
2 // { dg-do compile { target c++11 } }
4 struct S {
5         constexpr S() {}
6 };
8 struct T {
9         constexpr T(S const& s) : s{s} {}
10         S const& s;
13 constexpr S s {};
14 constexpr T t { s };