xxxxxxxxxx
unittest
{
int[int] dict = [1: 10, 2: 20, 3: 30];
assert(dict == [2: 20, 1: 10, 3: 30]); // passes
assert(dict == [1: 10]); // fails
}