* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept23.C
blobb630b23a3c429aac020a2dbfff2882bd15a4243c
1 // PR c++/53025
2 // { dg-do compile { target c++11 } }
4 struct A {
5   A() noexcept {}
6   A(const A&) noexcept(false) {}
7 };
9 void a(A) noexcept {}
11 void f()
13 #if __cplusplus <= 201402L
14   const bool val = false;
15 #else
16   const bool val = true;
17 #endif
18   static_assert(noexcept(a(A{})) == val, "");