Thread overview
[Issue 1929] New: concatenation of multi-dimensional arrays fails when holding static arrays
Mar 18, 2008
d-bugmail
Apr 22, 2009
d-bugmail
Sep 10, 2009
Don
March 18, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=1929

           Summary: concatenation of multi-dimensional arrays fails when
                    holding static arrays
           Product: D
           Version: 2.012
          Platform: PC
               URL: http://lists.puremagic.com/pipermail/digitalmars-d/2008-
                    March/033942.html
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: tobias@justdreams.de


en detail:
http://lists.puremagic.com/pipermail/digitalmars-d/2008-March/033942.html
in short:
        int [2][] b =[[0,1],[2,3]];
        b ~= [4,5];    // wrong result as b holds now:
        // [[0 1] [2 3] [4 5] [0 0]]

works fine in 1.028 and gdc as confirmed by some users


-- 

April 22, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=1929





------- Comment #1 from clugdbug@yahoo.com.au  2009-04-22 10:04 -------
Works for me D2.029 and 1.042.


-- 

September 10, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=1929


Don <clugdbug@yahoo.com.au> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |clugdbug@yahoo.com.au
         Resolution|                            |FIXED


--- Comment #2 from Don <clugdbug@yahoo.com.au> 2009-09-10 14:18:16 PDT ---
This was fixed in DMD2.022 or earlier.

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