* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-noexcept5.C
blob7b0c83599543ed37a2f05d27ec3e7a245e182692
1 // { dg-do compile { target c++11 } }
3 struct booleable {
4   bool data;
5   constexpr explicit operator bool() { return data; }
6 };
8 constexpr booleable truthy_func() { return {true}; }
10 void funky() noexcept(truthy_func()) {}
12 int main() {
13   funky();
14   return 0;