http://d.puremagic.com/issues/show_bug.cgi?id=8650
Summary: SLice opOpAssign SLice with overlap does not throw
Product: D
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from [email protected] 2012-09-13 08:34:37 PDT ---
--------
void main()
{
int[] b = new int[](10);
b[] = 5;
b[0..6] += b[4..10];
}
--------
Behavior: Runs until end of program.
Expected: A error to be thrown: Overlapping operations are illegal.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------