From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C07663858C20; Mon, 20 Nov 2023 06:47:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C07663858C20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1700462858; bh=DtMUs6bn73rAx7Vl+hzBqxsvRvg2gknFPeNt19I1sx0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=qonakrvA8VmmSlaDe8Nm/+1fKSpiFgy48teiqEZqcRTz4YrWhEvnE25e08mHPhfha ucURdDnqVBhOWR8/RsIqjjOhBJUr1bRvLT6OkDHEVIEa8EbtCr4/nusa2b9rP1Tjjs WtrYJNn176qifbGzyBKBleaDCLB7Cz0CxW9zGT9E= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/112633] [13/14 Regression] ICE with type aliases and depedent value Date: Mon, 20 Nov 2023 06:47:38 +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.1.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org 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: 13.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords version short_desc target_milestone 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=3D112633 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Version|13.0 |13.1.0 Summary|ICE in parser GCC 13+ |[13/14 Regression] ICE with |(including 14) around type |type aliases and depedent |aliases |value Target Milestone|--- |13.3 --- Comment #1 from Andrew Pinski --- Confirmed, note this is not related to variadic templates as this crashes i= n a similar way: ``` template constexpr bool dependent_true =3D true; template struct empty_type { }; // something like enable_if template using empty_type_t =3D typename empty_type::type;=20 struct wrapper { using type =3D void; }; template using all =3D wrapper; template using constraints =3D typename all::type; template >> =3D null= ptr>=20 void calculate() { }; ```=