* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-redeclaration1.C
blob6010b207555a03da730b4e637adf143f14f1a7bc
1 // PR c++/59123
2 // { dg-do compile { target c++11 } }
4 // Fwd-declarations
5 struct S;
6 extern const S s;
8 // (... later) definitions
9 struct S {};
10 constexpr S s {};