* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept18.C
blobe851b8600517a4ae377d1a6bf14c39d7ffdec87b
1 // PR c++/54207
2 // { dg-do compile { target c++11 } }
4 typedef bool B;
5 constexpr B foo () { return true; }
7 void
8 bar () noexcept (foo ())