From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 21B273890406; Fri, 25 Jun 2021 11:31:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 21B273890406 From: "aaron at aaronballman dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/101209] New: ICE with trailing return type on a conversion operator Date: Fri, 25 Jun 2021 11:31:05 +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: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: aaron at aaronballman 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, 25 Jun 2021 11:31:06 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D101209 Bug ID: 101209 Summary: ICE with trailing return type on a conversion operator Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: aaron at aaronballman dot com Target Milestone: --- I was curious what kind of diagnostics different compilers would give me for some nonsense code, and found that the following code causes an ICE in GCC. struct S { operator int() const -> double; }; :2:27: internal compiler error: in splice_late_return_type, at cp/pt.c:29753 2 | operator int() const -> double; | ^~~~~~ 0x1d48999 internal_error(char const*, ...) ???:0 0x724013 fancy_abort(char const*, int, char const*) ???:0 0x9847fc splice_late_return_type(tree_node*, tree_node*) ???:0 0x808c53 grokdeclarator(cp_declarator const*, cp_decl_specifier_seq*, decl_context, int, tree_node**) ???:0 0x834403 grokfield(cp_declarator const*, cp_decl_specifier_seq*, tree_node*, bool, tree_node*, tree_node*) ???:0 0x94cadd c_parse_file() ???:0 0xacfe82 c_common_parse_file() ???:0 Please submit a full bug report, with preprocessed source if appropriate. Please include the complete backtrace with any bug report. See for instructions. Compiler returned: 1 This should likely give an error about using a trailing return type for a function with a declared return type other than a placeholder type.=