This little program gives me an "Error: Access Violation" on Windows, v1.042:
import std.random: rand;
void main() {
auto a = new uint[10_000_000];
for (int i = 0; i < a.length; i++)
a[i] = rand();
a.sort;
a.sort;
}
Can someone confirm this?
Bye,
bearophile
