cat > bug.d << CODE
import std.container : Array, BinaryHeap;
alias Heap = BinaryHeap!(Array!int);
CODE
dmd -c bug
----
/home/dawg/Code/D/DPL/dmd/src/../../phobos/std/container/array.d(432): Error: cannot implicitly convert expression ((inout inout(Range) __ctmp1781 = 0;
, __ctmp1781).this(this, 0LU, this.length())) of type inout(Range) to Range
bug.d(2): while looking for match for BinaryHeap!(Array!int)
----
Introduced with https://github.com/D-Programming-Language/phobos/pull/2573.