From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id BEE9E3858C41; Fri, 10 Nov 2023 21:22:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BEE9E3858C41 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1699651367; bh=cwuCj5fiwj+Ty8E/rrXJDe4JUTZHtOqbj0ausBnsOH8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=QrcfyMO6v3kjOp4RF7QcABIbrABFxFB/TZhaPppNccneTGFj0J36AnuTsTTuiTNU+ L2ByeDE8PBKiZ9OPFQx3TT0uJO+p8wwkHnZjBolx3glq+MGPu/M7z2pzBky0/bprVG nCAmH6flCgOWlLjKp4AFw8Sa2JlXRdd0vHWOKax8= From: "ppalka at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/109122] std::ranges::find segfaults with gcc (trunk but not 12.2) on godbolt Date: Fri, 10 Nov 2023 21:22:46 +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: 13.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ppalka 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: keywords cc 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D109122 Patrick Palka changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|needs-reduction | CC| |ppalka at gcc dot gnu.org --- Comment #5 from Patrick Palka --- The problem seems to be with pretty printing a reference/pointer to a point= er to member function type: template concept C =3D requires (T t, F f) { (t.*f)(); }; struct A; static_assert(C);=