From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E689C3858001; Tue, 7 Sep 2021 19:43:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E689C3858001 From: "jason at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/102229] [11/12 Regression] 'decltype(auto)' cannot be cv-qualified Date: Tue, 07 Sep 2021 19:43:33 +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: 11.2.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: jason at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc 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 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: Tue, 07 Sep 2021 19:43:34 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D102229 Jason Merrill changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jason at gcc dot gnu.org --- Comment #5 from Jason Merrill --- The standard isn't very clear on this point; it seems like a core issue. 9.2.6/10: A constexpr specifier used in an object declaration declares the object as const. 9.2.9.6.2/2.2: for a variable declared with a type that contains a placehol= der type, T is the declared type of the variable and E is the initializer. /5: If the placeholder-type-specifier is of the form type-constraint opt decltype(auto), T shall be the placeholder alone. The question is whether constexpr adds const before deduction (so it's part= of "the declared type of the variable") or after. The latter interpretation s= eems more useful, so let's go with that.=