From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 6B445398D051; Thu, 4 Mar 2021 07:43:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6B445398D051 From: "boris at kolpackov dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/99377] New: [modules] undefined std::string_view::empty() if referenced in inline exported function Date: Thu, 04 Mar 2021 07:43:24 +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: boris at kolpackov dot net 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: Thu, 04 Mar 2021 07:43:24 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D99377 Bug ID: 99377 Summary: [modules] undefined std::string_view::empty() if referenced in inline exported function Product: gcc Version: 11.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: boris at kolpackov dot net Target Milestone: --- cat <hello.mxx export module hello; import ; export namespace hello { inline bool check (const std::string_view& n) { return !n.empty (); } } EOF cat <main.cxx import hello; int main () { return hello::check ("World") ? 0 : 1; } EOF g++ -std=3Dc++2a -fmodules-ts -fmodule-header -x c++-header .../include/c++/11.0.1/string_view g++ -std=3Dc++2a -fmodules-ts -c -x c++ hello.mxx g++ -std=3Dc++2a -fmodules-ts -c -x c++ main.cxx=20 g++ -std=3Dc++2a -fmodules-ts hello.o main.o=20 main.o: In function `hello::check(std::basic_string_view > const&)': main.cxx:(.text._ZN5hello5checkERKSt17basic_string_viewIcSt11char_traitsIcE= E[_ZN5hello5checkERKSt17basic_string_viewIcSt11char_traitsIcEE]+0x14): undefined reference to `std::basic_string_view >::empty() const' The error goes away if hello::check is made non-inline.=