* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-__func__.C
bloba71ed6c63c2b3284e0032381820c0c9055f27eb3
1 // PR c++/55425
2 // { dg-do compile { target c++11 } }
4 constexpr const char* x() { return __func__; }
5 constexpr const char* y() { return __FUNCTION__; }
6 constexpr const char* z() { return __PRETTY_FUNCTION__; }