`val` does not hash values correctly. Need to fix it: ```py # Now assert not val() in {val(), val(a=4)} assert not val() in {1, 2, 3} # Need assert val() in {val(), val(a=4)} assert not val() in {1, 2, 3} ```