http://d.puremagic.com/issues/show_bug.cgi?id=8905
Summary: DList.Range: Internal error, inconsistent state
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Ellery Newcomer <[email protected]> 2012-10-28
16:00:24 PDT ---
The code:
import std.container;
import std.algorithm;
import std.stdio;
void main() {
DList!int list = make!(DList!int)(1,2,3,4);
auto range = list[];
list.stableRemoveBack();
list.stableInsertBack(7);
writeln(list[]);
writeln(range);
}
The fireworks:
core.exception.AssertError@/usr/include/dmd-d/std/container.d(1573):
DList.Range: Internal error, inconsistent state
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------