From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 3837B385188D; Thu, 24 Nov 2022 21:48:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3837B385188D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669326527; bh=f2juOX9Plvx4d1f0L+X6lQf4P7RIQLqtPWW4aC2j5Cw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=WdbLq7LnvnKtxLiWstSQ4rLi0yQ1oA6x3pVBey8CNK+EWJqDGNRfr0YD1yQlxy07p 80EF4iwwhHCr3u15cSoSOocTMpoRMVv92wI4uNy9+FWtgEXP48hpOq5WgkELTPPHxy jWOlSDu362VQuettmhWQD0IpXeBrQqlrU9H4K2wM= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/107864] Internal Compiler Error (Large Project, C++20) Date: Thu, 24 Nov 2022 21:48:47 +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-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia 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: bug_status everconfirmed 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107864 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever confirmed|0 |1 Last reconfirmed| |2022-11-24 --- Comment #4 from Andrew Pinski --- Reduced testcase: template T j( T const& val ) requires true { return val; } template<> int j( int const& val ) { return 0; } int t =3D j(1);=