This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libstdc++/51452] has_nothrow_.*constructor bugs
- From: "redi at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 09 Dec 2011 16:02:11 +0000
- Subject: [Bug libstdc++/51452] has_nothrow_.*constructor bugs
- Auto-submitted: auto-generated
- References: <bug-51452-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51452
--- Comment #8 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-12-09 16:02:11 UTC ---
Corrected testcase:
struct X
{
X() noexcept;
~X() noexcept(false);
};
static_assert( noexcept( X() ), "fails because of ~X" );
static_assert( noexcept(new (nullptr) X()), "works" );