From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5B957385AC26; Thu, 17 Feb 2022 10:38:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5B957385AC26 From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/104567] SFINAE check failure with trying to access member field on the default template argument for a function Date: Thu, 17 Feb 2022 10:38:51 +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: 4.7.1 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org 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: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_known_to_fail 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: Thu, 17 Feb 2022 10:38:51 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D104567 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Known to fail| |12.0 --- Comment #4 from Jonathan Wakely --- A testcase that shows the bug is a lot more useful than one that needs something uncommented to show the bug. template constexpr bool has_char_static_param(int) { return true; } template constexpr bool has_char_static_param(...) { return false; } struct works1 { constexpr static char param[] =3D "param"; }; struct works2 { constexpr static int param =3D 0; }; struct fails { char const* param; // not static }; static_assert(has_char_static_param(0), ""); static_assert(!has_char_static_param(0), ""); static_assert(!has_char_static_param(0), ""); // FAILS=