From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id F04553858001; Fri, 30 Jul 2021 15:50:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F04553858001 From: "joeloser93 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/101677] [11/12 Regression] Concept with use of incomplete type succeeds on GCC 10.3.0, fails on GCC 11 onward Date: Fri, 30 Jul 2021 15:50:14 +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.1.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: joeloser93 at gmail dot com 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: 11.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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: Fri, 30 Jul 2021 15:50:15 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D101677 --- Comment #2 from Joe Loser --- (In reply to Andrew Pinski from comment #1) > >This bug can be worked around by using a complete type instead when defi= ning the concept.=20 >=20 > It does not even have to be complete type; just defined before. > So adding: > class S; > at the begining causes GCC to accept the code. Yep, you're right. That's actually what I use in my codebase as a workaroun= d. I misspoke in the description -- sorry about that. Updated Godbolt link is at https://godbolt.org/z/KGq48WYq4=