From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 03DE93856DF8; Tue, 15 Aug 2023 16:08:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 03DE93856DF8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1692115732; bh=oO1aJje2cqTqH/Lt6mfoLbRoPsXnstLDWZZ7ThmVseM=; h=From:To:Subject:Date:From; b=pGUJu9Tt5PCzRLdcU5T7UEGS1oTZFt74SOGTgGv98D3ruEY8/5HT7sHw1wcbH7b2Y 8VAIMcL+r2oYFU2xQocQ3jmtSJ6UnAhtjZlJEeJaJChJpHu+rf9jD3RduXSfCWw30x 86G7eUTmuCK2rukN2JpCWOh+tdXPMJj4GNiK/3IM= From: "hewillk at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/111031] New: ICE: internal compiler error: in iterative_hash_template_arg, at cp/pt.cc:1747 Date: Tue, 15 Aug 2023 16:08:51 +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: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hewillk 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 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D111031 Bug ID: 111031 Summary: ICE: internal compiler error: in iterative_hash_template_arg, at cp/pt.cc:1747 Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: hewillk at gmail dot com Target Milestone: --- I will reduce it if I have the bandwidth. #include namespace std::ranges { template using concat_reference_t =3D common_reference_t...>; template concept concatable =3D (requires(const iterator_t in) { { *in } -> convertible_to>; } && ...); template requires concatable class concat_view { }; template concat_view(Rs&&...) -> concat_view...>; } // namespace std::ranges int main() { int x[] =3D {0, 1, 2}; std::ranges::concat_view r(x); } https://godbolt.org/z/jEh9YzafT=