* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-trivial3.C
blob6833cd3ab80bee4af7b074bbb7467aac3a9c53ce
1 // PR c++/80077
2 // { dg-do compile { target c++11 } }
3 // { dg-options -fno-elide-constructors }
5 struct X_t { X_t() = default; };
6 constexpr X_t x = X_t();