* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor20.C
blobd5df3f6b36c4aed98e053a13943816184e77139f
1 // PR c++/64954
2 // { dg-do compile { target c++11 } }
4 struct A {};
5 int main() {
6     A a;
7     constexpr A b = a;