In internals\object.d, there is
class Object
{
...
hash_t toHash()
...
}
In object.d, it is
class Object
{
...
uint toHash();
...
}
While there's no difference on a 32-bit system, this could wreak havoc on 64-bit. Changing the one in object.d should fix the problem.