Currently this passes mypy: ```python from typing import Hashable def f(x: Hashable): pass f([]) ``` A possible solution may be to add `__hash__: None` to non-hashable types like `list`.