From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9EA0B385800A; Fri, 14 May 2021 01:25:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9EA0B385800A From: "brycelelbach at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/100594] New: Lambdas in unevaluated contexts interact oddly with alias templates Date: Fri, 14 May 2021 01:25:31 +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: 12.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: brycelelbach 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 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: Fri, 14 May 2021 01:25:31 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D100594 Bug ID: 100594 Summary: Lambdas in unevaluated contexts interact oddly with alias templates Product: gcc Version: 12.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: brycelelbach at gmail dot com Target Milestone: --- This code: ``` template struct identity {}; template using A =3D decltype([] () constexpr { return int{}; }()); template using B =3D identity>; ``` Is incorrectly rejected by GCC in C++20 mode: ``` :7:23: error: template argument 1 is invalid 7 | using B =3D identity>; | ^~ ASM generation compiler returned: 1 :7:23: error: template argument 1 is invalid 7 | using B =3D identity>; | ^~ Execution build compiler returned: 1 ``` https://godbolt.org/z/hGjfvjGzc For context, I ran into this while writing this code: https://godbolt.org/z/36xz8zGMd I discussed this with Ville and Jason via email: Ville wrote: > Specifically looks like there's an interaction with an alias template > here, because >=20 > decltype([] () constexpr { return int{}; }())* oink; > static_assert(std::is_same_v); >=20 > is just fine according to GCC. Jason wrote: > Yeah, how (unevaluated) lambdas should interact with alias templates is > unclear, connected to various existing alias template issues around exact= ly > how transparent (or not) they are. >=20 > You could work around this with a class template or variable template > that forces the lambda instantiation to be delayed until we have a full > set of template arguments.=