For example: ```python def missing(self): raise AttributeError("missing") class E: __eq__ = property(missing) assert not (E() == E()) ``` raises `AttributeError: missing` rather than pass the assertion.