]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/noexcept23.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept23.C
1 // PR c++/53025
2 // { dg-do compile { target c++11 } }
3
4 struct A {
5 A() noexcept {}
6 A(const A&) noexcept(false) {}
7 };
8
9 void a(A) noexcept {}
10
11 void f()
12 {
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, "");
19 }
This page took 0.03779 seconds and 5 git commands to generate.