Le 09/04/10 13:35, bearophile a écrit :
Thank you for the release and your work, and thank you to Don for all the bug fixes. I will need some more time to test this release better. In the meantime, is it possible to use BigInts into an AA? This gives a Range violation:import std.bigint: BigInt; void main() { BigInt[BigInt] aa; aa[BigInt(1)]++; } Bye, bearophile
Maybe this is the same problem as with:
import std.variant;
void main() {
Variant[string] aa;
aa["one"] = 1;
}
Bug 2451?
