[Issue 8146] New: Potentially ambiguous overloaded call

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu May 24 15:00:56 PDT 2012


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

           Summary: Potentially ambiguous overloaded call
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: bearophile_hugs at eml.cc


--- Comment #0 from bearophile_hugs at eml.cc 2012-05-24 15:02:39 PDT ---
This is just a potential enhancement request. It's not an enhancement request
because I am not sure about it.

A thread started by Andrej Mitrovic on D.learn:
http://forum.dlang.org/thread/mailman.1043.1337863952.24740.digitalmars-d-learn@puremagic.com

In dmd 2.060alpha this code compiles and doesn't assert at run-time, so it
calls the second overload:


struct Foo {}
void test(void* test) { assert(0); }
void test(Foo* test) {}
void main() {
    test(null);
}


As Andrej comments, shouldn't this be considered an ambiguous call, and refused
at compile time?

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


More information about the Digitalmars-d-bugs mailing list