September 22, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8707

           Summary: Internal error: ../ztc/cod1.c 1689
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: blooh_@hotmail.com


--- Comment #0 from Christopher Crouzet <blooh_@hotmail.com> 2012-09-22 14:02:55 PDT ---
The code below gives an Internal error: ../ztc/cod1.c 1689 Tested with dmd v2.060.


// ------------------------------
int test( T )( T array )
{
  return 0;
}


void main()
{
  immutable int[5][2] array2d = [[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]];
  static int result = test( array2d );
}
// ------------------------------

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


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@digitalmars.com
         Resolution|                            |WORKSFORME


--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> 2013-10-06 23:42:32 PDT ---
Compiles without error on 2.064 head.

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