www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 7122] New: [module] compiler fails to handle import of renamed module

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7122

           Summary: [module] compiler fails to handle import of renamed
                    module
           Product: D
           Version: D2
          Platform: Other
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: dawg dawgfoto.de



---- a0.d ----
module foo;
---- a1.d ----
module a1;
import a0;
--------------
dmd -lib a0.d a1.d
--------------
a1.d(2): Error: module foo from file a0.d conflicts with another module foo
from file a0.d
--------------

The compiler should detect this import as an already known module.
This is important when splitting a module into declaration and
definition when the defining file should be located in a path
that doesn't match the module name.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Dec 16 2011
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7122


Andrej Mitrovic <andrej.mitrovich gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |andrej.mitrovich gmail.com
         Resolution|                            |INVALID



08:57:53 PST ---
You can use whatever filename you want but you have to use the name in the
module declaration when importing. See also Issue 4479

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Dec 27 2012
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7122




Then per module compilation can't work.
dmd -c a1.d
How is the compiler able to know which file contains module a1?

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 08 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7122




15:18:10 PST ---

 Then per module compilation can't work.
 dmd -c a1.d
Works fine here. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 08 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7122




but you have to use the name in the
module declaration when importing --- cat > a0.d << CODE module foo; CODE cat > a1.d << CODE import foo; CODE dmd -c a1.d --- a1.d(1): Error: module foo is in file 'foo.d' which cannot be read --- How is the compiler to know where to find the module foo? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 08 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7122




16:45:42 PST ---

 a1.d(1): Error: module foo is in file 'foo.d' which cannot be read
Right my bad, I used the wrong import. You can however use -c with multiple files as a workaround. Walter will have to comment on this. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jan 08 2013
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7122




07:07:42 PST ---
Note that Walter recently confirmed the following is a bug:
http://d.puremagic.com/issues/show_bug.cgi?id=9194

I can't find the NG post, but I filed that after he confirmed it.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 09 2013