[Issue 8350] New: array operation not fullly implemented
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Thu Jul 5 16:05:21 PDT 2012
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: nobody at puremagic.com
ReportedBy: bioinfornatics at gmail.com
--- Comment #0 from bioinfornatics <bioinfornatics at 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: -------
More information about the Digitalmars-d-bugs
mailing list