From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E6D3F386183E; Thu, 7 Dec 2023 10:34:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E6D3F386183E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1701945294; bh=mgkV/OFvad4GTNtOQnC5AnEPiD262koZDG9TCh4zeLI=; h=From:To:Subject:Date:From; b=MOtLnK3AEkHD77hs4N3Ipq1TtIuutA7CjUhjaQDAWFf3i1hvVwkMEuEdJFOFgKVHi nxnrGRwhQLrygjMAZj51cj5ZoZTT1WEtoeY+JVSzakzYQFWcEi+J631S8POCYpdcbm BAj4LSrLN/hrI1+KEZSjB7ifOge9EdwtNQccTVJw= From: "michael.kenzel at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/112899] New: odr-using constexpr static data member of class exported from module results in linker error Date: Thu, 07 Dec 2023 10:34:54 +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: 13.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: michael.kenzel 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D112899 Bug ID: 112899 Summary: odr-using constexpr static data member of class exported from module results in linker error Product: gcc Version: 13.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: michael.kenzel at gmail dot com Target Milestone: --- The following example will reproduce the issue: // A.ixx export module A; export struct A { static constexpr int blub =3D -1; }; // main.cpp import A; int main() { const int& x =3D A::blub; } compile with g++ -std=3Dc++23 -fmodules-ts -c -x c++ A.ixx g++ -std=3Dc++23 -fmodules-ts main.cpp A.o results in main.cpp:(.text+0x4): undefined reference to `A@A::blub'=