https://issues.dlang.org/show_bug.cgi?id=20799
Issue ID: 20799
Summary: schwartzSort does not pin transformation results with
indirections, leading to memory corruption
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: major
Priority: P1
Component: phobos
Assignee: [email protected]
Reporter: [email protected]
import std.algorithm.sorting;
import std.range;
void main()
{
auto arr = 1_000_000.iota.retro.array;
arr.schwartzSort!(
n => new int(n),
(a, b) => *a < *b
);
assert(arr.isSorted());
}
--