public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/106851] New: [modules] Name conflict for exported using-declaration
@ 2022-09-06 13:58 redi at gcc dot gnu.org
  2022-09-06 14:15 ` [Bug c++/106851] " johelegp at gmail dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2022-09-06 13:58 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 106851
           Summary: [modules] Name conflict for exported using-declaration
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org
            Blocks: 103524
  Target Milestone: ---

$ cat lib.h
namespace outer {
  template<typename T> void any_of(T) { }

  namespace inner {
    struct A { };
    inline constexpr A any_of;
  }
}

$ gcc -c -std=c++23 -fmodules-ts -x c++-header lib.h


$ cat lib.cc
export module lib;

import "lib.h";

export using outer::any_of;
export using outer::inner::any_of;


$ gcc -c -std=c++23 -fmodules-ts lib.cc 
lib.cc:6:28: error: ‘constexpr const outer::inner::A outer::inner::any_of’
conflicts with a previous declaration
    6 | export using outer::inner::any_of;
      |                            ^~~~~~
In module ./lib.h, imported at lib.cc:3:
lib.h:2:29: note: previous declaration ‘void outer::any_of(T)’
    2 |   template<typename T> void any_of(T) { }
      |                             ^~~~~~
lib.cc:1:8: warning: not writing module ‘lib’ due to errors
    1 | export module lib;
      |        ^~~~~~


The names are in different scopes, shouldn't they be exported that way too?


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103524
[Bug 103524] [meta-bug] modules issue

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

end of thread, other threads:[~2024-03-07  0:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-06 13:58 [Bug c++/106851] New: [modules] Name conflict for exported using-declaration redi at gcc dot gnu.org
2022-09-06 14:15 ` [Bug c++/106851] " johelegp at gmail dot com
2023-11-09 11:20 ` nathanieloshead at gmail dot com
2024-02-28 11:10 ` redi at gcc dot gnu.org
2024-03-06 14:31 ` redi at gcc dot gnu.org
2024-03-06 23:59 ` nshead at gcc dot gnu.org
2024-03-07  0:02 ` redi 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).