From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 094733857C58; Fri, 17 Jul 2020 01:41:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 094733857C58 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1594950116; bh=b66wL0DIMSVhm9DdV0DPXw0yMGkTcOxMseBqqzmlQiY=; h=From:To:Subject:Date:From; b=vcrda0TO4b3lslsCqjeWzHaQcUn819jjpPj2YTC16FtTYSAszBdWHCXler2IPacnV K7DQ+MWuESMLxnH1swItq8p/U4gdP1axCGeKE1fdTX/M0YIKD0WT+OieLGc5DJsFtM G6Ctax3FoaCRKGgb9X41IUd3Cqplns8uaVrKWRww= From: "johelegp at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug d/96229] New: Invalid specialization accepted when also constrained in base template template parameter Date: Fri, 17 Jul 2020 01:41:55 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: d X-Bugzilla-Version: 10.1.0 X-Bugzilla-Keywords: accepts-invalid X-Bugzilla-Severity: normal X-Bugzilla-Who: johelegp at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ibuclaw at gdcproject dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_file_loc bug_status keywords 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, 17 Jul 2020 01:41:56 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D96229 Bug ID: 96229 Summary: Invalid specialization accepted when also constrained in base template template parameter Product: gcc Version: 10.1.0 URL: https://godbolt.org/z/W1zh9n Status: UNCONFIRMED Keywords: accepts-invalid Severity: normal Priority: P3 Component: d Assignee: ibuclaw at gdcproject dot org Reporter: johelegp at gmail dot com Target Milestone: --- See https://godbolt.org/z/W1zh9n. ```C++ template concept Int =3D requires { T{0}; }; template