public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/99682] New: [modules] Module implementation unit is unable to indirectly import its corresponding interface unit
@ 2021-03-20 15:00 ensadc at mailnesia dot com
  0 siblings, 0 replies; only message in thread
From: ensadc at mailnesia dot com @ 2021-03-20 15:00 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99682
           Summary: [modules] Module implementation unit is unable to
                    indirectly import its corresponding interface unit
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ensadc at mailnesia dot com
  Target Milestone: ---

$ cat src/foo.cpp
export module foo;

$ cat src/bar.cpp
export module bar;
import foo;

$ cat src/foo-impl.cpp
module foo;
import bar;

$ g++ -fmodules-ts -c src/foo.cpp
$ g++ -fmodules-ts -c src/bar.cpp
$ g++ -fmodules-ts -c src/foo-impl.cpp
In module imported at src/foo-impl.cpp:2:1:
bar: error: cannot import module in its own purview
In module imported at src/foo-impl.cpp:1:1:
foo: note: module ‘foo’ declared here
In module imported at src/foo-impl.cpp:2:1:
bar: error: failed to read compiled module: Bad import dependency
bar: note: compiled module file is ‘gcm.cache/bar.gcm’
bar: fatal error: returning to the gate for a mechanical issue
compilation terminated.

====

AFAIK, although a module implementation unit cannot *directly* imports its
module interface unit (http://eel.is/c++draft/module.import#9 ), *indirect*
import should not be prohibited (and should probably be a no-op, because the
primary module interface unit has been imported by `module foo;`).

MSVC compiles this test case without any errors.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-03-20 15:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-20 15:00 [Bug c++/99682] New: [modules] Module implementation unit is unable to indirectly import its corresponding interface unit ensadc at mailnesia dot com

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).