www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 9194] New: Module imports are not properly checked when found in import path

http://d.puremagic.com/issues/show_bug.cgi?id=9194

           Summary: Module imports are not properly checked when found in
                    import path
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: accepts-invalid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: andrej.mitrovich gmail.com



05:20:20 PST ---
.\main.d
.\foo.d

main.d:

module main;
import foo;
void main() { test(); }

foo.d:

module bar;
void test() { }

This is OK:

$ dmd -c main.d foo.d
 main.d(2): Error: module bar from file foo.d must be imported as module 'bar'
This should also fail to compile but it doesn't $ dmd -c main.d

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Dec 22 2012