From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5F04A385736E; Sun, 19 Jun 2022 04:11:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5F04A385736E From: "ldalessandro at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/106026] New: ICE: error reporting routines re-entered. Date: Sun, 19 Jun 2022 04:11:19 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ldalessandro at gmail dot com X-Bugzilla-Status: UNCONFIRMED 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: 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: Sun, 19 Jun 2022 04:11:19 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D106026 Bug ID: 106026 Summary: ICE: error reporting routines re-entered. Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: ldalessandro at gmail dot com Target Milestone: --- Created attachment 53163 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D53163&action=3Dedit Eric's tag_invoke implementation. Triggered with complicated tag_invoke + concepts. This code is erroneous (t= he friend function with "requires requires" in cpos::extent and the free funct= ion with "concepts::has_static_extent" should not both be possible. This requires Eric Niebler's tag_invoke gist, which is somewhat complex, so= I left it in as an #include. I attached an actual copy as tag_invoke.hpp to t= his PR as well. https://godbolt.org/z/fzqEG6bnW #include #include #include #define FWD(x) static_cast(x) namespace traits { template inline constexpr auto extents_v =3D not defined(extents_v); } namespace cpos { struct extents { template requires requires { { traits::extents_v> }; } constexpr friend auto tag_invoke(extents, T&&) { return traits::extents_v>; } constexpr auto operator()(auto&& x) const { return tag_invoke(*this, FWD(x)); } }; } constexpr cpos::extents extents; namespace concepts { template concept has_extents =3D requires (T t) { { extents(t) }; }; template concept has_static_extents =3D has_extents and requires { { traits::extents_v> }; }; } template constexpr auto tag_invoke(cpos::extents, T&&) { return traits::extents_v>; } template struct static_tensor { }; namespace traits { template inline constexpr auto extents_v> =3D _shape; } constexpr std::array matrix_shape =3D { 3, 3 }; auto x =3D static_tensor{}; static_assert(concepts::has_static_extents);=