Bug 15808 – Invalid memory operation with Git HEAD

Status
RESOLVED
Resolution
DUPLICATE
Severity
regression
Priority
P1
Component
dmd
Product
D
Version
D2
Platform
x86_64
OS
Linux
Creation time
2016-03-18T15:41:00Z
Last change time
2016-03-23T08:33:30Z
Assigned to
nobody
Creator
puneet

Comments

Comment #0 by puneet — 2016-03-18T15:41:01Z
Unable to use BinaryHeap container with Git HEAD. Works with dmd-2.070 Reduced code follows: // ----------------------------- import std.container: BinaryHeap; class Foo { int[] bar; alias BinaryHeap!(int[]) Heap; Heap frop; this() { bar ~= 0; frop = bar; } } void main() { new Foo(); }
Comment #1 by code — 2016-03-23T08:33:30Z
*** This issue has been marked as a duplicate of issue 15822 ***