From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 500DA3857B83; Wed, 6 Jul 2022 10:44:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 500DA3857B83 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/85944] Address of temporary bound to a function parameter at global scope not considered constexpr Date: Wed, 06 Jul 2022 10:44:31 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 8.1.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_reconfirmed_on Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2022 10:44:31 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D85944 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed|2021-12-06 00:00:00 |2022-7-6 --- Comment #5 from Jonathan Wakely --- This affects the Debug Mode checks in std::array's operator=3D=3D as report= ed in PR 106212: namespace std { struct array { constexpr const void* data() const { return this; } constexpr bool operator=3D=3D(const array&) const { if (data() =3D=3D nullptr) throw 1; return true; } }; } struct P { bool operator=3D=3D(P const &) const =3D default; std::array e; }; void f() { static_assert(P() =3D=3D P()); } static_assert(P() =3D=3D P()); namespace std { struct array { constexpr const void* data() const { return this; } constexpr bool operator=3D=3D(const array&) const { if (data() =3D=3D nullptr) throw 1; return true; } }; } struct P { bool operator=3D=3D(P const &) const =3D default; std::array e; }; void f() { static_assert(P() =3D=3D P()); // OK } static_assert(P() =3D=3D P()); // NOT OK=