* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-noexcept7.C
blob2a70d7bb5298ce6303218cd132bfa517279f4e78
1 // PR c++/53473
2 // { dg-do compile { target c++11 } }
4 template<typename T> struct A
6   static constexpr T foo() noexcept { return 0; }
7 };
9 template<> constexpr int A<int>::foo() noexcept { return 0; }