← Back to index
|
Original Bugzilla link
Bug 8895 – infinite loop in DList.opEquals
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
phobos
Product
D
Version
D2
Platform
All
OS
All
Creation time
2012-10-25T18:38:00Z
Last change time
2012-10-26T21:45:06Z
Assigned to
nobody
Creator
ellery-newcomer
Comments
Comment #0
by ellery-newcomer — 2012-10-25T18:38:54Z
following code does not terminate: import std.container; import std.stdio; void main() { auto a = make!(DList!int)(1,2,3,4); auto b = make!(DList!int)(1,2,3,4); writeln(a == b); } dmd from master.
Comment #1
by hsteoh — 2012-10-26T21:27:11Z
https://github.com/D-Programming-Language/phobos/pull/899
Comment #2
by github-bugzilla — 2012-10-26T21:45:06Z
Commit pushed to master at
https://github.com/D-Programming-Language/phobos
https://github.com/D-Programming-Language/phobos/commit/77b3c443ee130066eded32734181628e01dc792c
Merge pull request #899 from quickfur/dlist_opEquals Fix infinite loop in opEquals. (issue 8895)