public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/112899] New: odr-using constexpr static data member of class exported from module results in linker error
@ 2023-12-07 10:34 michael.kenzel at gmail dot com
  2023-12-17 16:39 ` [Bug c++/112899] " ppalka at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: michael.kenzel at gmail dot com @ 2023-12-07 10:34 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112899

            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 = -1;
    };

    // main.cpp
    import A;

    int main()
    {
        const int& x = A::blub;
    }

compile with
    g++ -std=c++23 -fmodules-ts -c -x c++ A.ixx
    g++ -std=c++23 -fmodules-ts main.cpp A.o

results in
    main.cpp:(.text+0x4): undefined reference to `A@A::blub'

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-03-06 20:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-07 10:34 [Bug c++/112899] New: odr-using constexpr static data member of class exported from module results in linker error michael.kenzel at gmail dot com
2023-12-17 16:39 ` [Bug c++/112899] " ppalka at gcc dot gnu.org
2024-01-07 10:52 ` cvs-commit at gcc dot gnu.org
2024-01-26 11:29 ` cvs-commit at gcc dot gnu.org
2024-01-27 10:18 ` nshead at gcc dot gnu.org
2024-03-06 20:24 ` ppalka at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).