Can someone please explain why the following assertion fails?

import std.stdio;
import std.conv;

void main(string[] args)
{
        auto x = 1;

        assert(hashOf(x.to!(string)) == hashOf(x.to!(string)));
}

Thanks.

Reply via email to