October 12, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1575

           Summary: Cannot do assignment of tuples
           Product: D
           Version: unspecified
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: bugzilla@digitalmars.com


The following fails to compile:

template Tuple(T...)
{
    alias T Tuple;
}

alias Tuple!(int, long) TX

void foo(TX t)
{
    TX s;
    s = t;
}


-- 

November 04, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1575


bugzilla@digitalmars.com changed:

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




------- Comment #2 from bugzilla@digitalmars.com  2007-11-03 21:49 -------
Fixed dmd 1.023


--