https://issues.dlang.org/show_bug.cgi?id=15567

          Issue ID: 15567
           Summary: local import hijacking
           Product: D
           Version: D2
          Hardware: All
               URL: http://dlang.org/
                OS: All
            Status: NEW
          Severity: major
          Priority: P3
         Component: dmd
          Assignee: nob...@puremagic.com
          Reporter: bhe...@moxiegroup.com

Got burned by this:

import std.experimental.logger : trace;

void foo() {
    import std.net.curl : trace;
    trace("hello");
}

void main() {
    foo();    
}

This should not compile and give an error on the use of the ambiguous call to
trace.

confirmed on DMD 2.069.2  on windows

--

Reply via email to