* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-expinst.C
blob08a0fe022cd4992ea5682cc18c8837622ad8df5c
1 // { dg-do compile { target c++11 } }
2 // Error: Explicit instantiation of a function template shall not use the
3 // inline or constexpr specifiers
4 template<class T> constexpr inline T bar(T x) { return x; }
5 template constexpr inline float bar(float x); // { dg-error "specifier" }