September 23, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1526

           Summary: Two conflict templates accepted
           Product: D
           Version: unspecified
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: davidl@126.com


template toString (U,C,T:U[C])
{
        char[] toString(U m,C c, T t) { return ""; }
}
char[] toString()(int k){return "";}

void main()
{
        toString!(int,char,int[char])(d,m,v);
        toString(3);
}


-- 

September 23, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1526


davidl@126.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




------- Comment #1 from davidl@126.com  2007-09-22 21:43 -------
umm, it's invalid


--