From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 32E9F3858431; Fri, 17 Mar 2023 04:41:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 32E9F3858431 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1679028087; bh=kJdAwNTtI1sRObCbwznopNk6EJbTw+6TGmCwh0vd5Yk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=lNreTo3TBxmGP1kYQz23sL0mMycJSXPOqSbj3HeAQn4w54pJT1s2t3BMRRrydENsS 4bPeg7EQ/5bdlTQQ2KcJ/eHWEyeF64eMI/X9AlrVBj7TxRLJszp6I1AtOYLuMXt4M8 XG9bVL+MP22NNSMTHi9P5ARKJ7LBkyllkZhm0KsE= From: "steve_green at qq dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/109169] Feature request: Allow omitted template prompts Date: Fri, 17 Mar 2023 04:41:27 +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: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: steve_green at qq 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: 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D109169 --- Comment #1 from steve02081504 --- (Corrected code) ```c++ template struct type_info_t{ //... template static constexpr bool can_convert_to=3DXXX; //... }; template constexpr type_info_ttype_info{}; ```=