Comment #0 by peter.alexander.au — 2014-08-28T10:02:04Z
dmd 2.066
import std.bigint;
void main()
{
BigInt x = BigInt(1);
x /= 1U; // OK
x /= 1UL; // std/bigint.d(166): Error: static assert (true && false) is false
}
Issue 7973 is related. Don says this is was intentional due to some implementation issues, but should be solvable now.
Expected: All integer operations should exist on BigInt for all integral types.
Comment #1 by github-bugzilla — 2014-09-05T19:48:53Z