From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 1D049389852D; Fri, 18 Dec 2020 03:38:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1D049389852D From: "jbassett271 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/98367] New: ICE with CTAD non-type template parameter Date: Fri, 18 Dec 2020 03:38:32 +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: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jbassett271 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, 18 Dec 2020 03:38:33 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D98367 Bug ID: 98367 Summary: ICE with CTAD non-type template parameter Product: gcc Version: 11.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jbassett271 at gmail dot com Target Milestone: --- This ICEs the compiler with a segfault (see https://godbolt.org/z/ddceoM ): template struct ctad_t { A a; }; template struct myclass { }; template constexpr auto myobject =3D ctad_t {Something::value}; template using thing =3D myclass>; Compiled with (grabbed from the Compiler Explorer link): g++ -g -o output.s -masm=3Dintel -S -fdiagnostics-color=3Dalways -std=3Dc++2a example.cpp I have also confirmed this on my own machine with gcc version 10.1.0. Tested with GCC versions on Compiler Explorer: - gcc version 11.0.0 20201216 (experimental) - gcc version 10.2.0 - gcc version 10.1.0 - gcc version 9.3.0 - gcc version 9.2.0 - gcc version 9.1.0 - gcc version 8.3.0 - gcc version 8.2.0 - gcc version 8.1.0 These also segfaulted with -std=3Dc++1z instead of -std=3Dc++2a: - gcc version 7.5.0 - gcc version 7.4.0 - gcc version 7.3.0 - gcc version 7.2.0 - gcc version 7.1.0 Earlier versions did not support CTAD. Inlining the `object` variable does not segfault, but emits a message about being unable to perform CTAD: https://godbolt.org/z/drWT6h=