June 10, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6140

           Summary: Wrong ambiguity error with overloading
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Mac OS X
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: andrei@metalanguage.com


--- Comment #0 from Andrei Alexandrescu <andrei@metalanguage.com> 2011-06-09 21:39:34 PDT ---
void fun(T...)() {}
void fun(T...)(uint) {}

void main()
{
    fun!(main)(3u);
    fun!(main)(3);
}

This test fails in two different ways for the two lines of main. It shouldn't fail at all.

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


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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |andrej.mitrovich@gmail.com


--- Comment #2 from Andrej Mitrovic <andrej.mitrovich@gmail.com> 2013-02-09 08:13:59 PST ---
The first one doesn't fail, but the second one does (2.061).

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