http://d.puremagic.com/issues/show_bug.cgi?id=8350

           Summary: array operation not fullly implemented
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: bioinfornat...@gmail.com


--- Comment #0 from bioinfornatics <bioinfornat...@gmail.com> 2012-07-05 
16:05:15 PDT ---
size_t[] a = [0, 1, 2, 3];
a[] += 1;    // ---> implemented
size_t[] b = a[] + 1; // ---> Not yet implemented


---------------------
import std.stdio;
void main(){
    size_t[] a = [0, 1, 2, 3];
    size_t[] b = a[] + 1;
    writeln( a );
}

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

Reply via email to