When defining a typeclass, it is easy to forget that `@typeclass` definition must not have a body. Probably, we can check it with `mypy`. So, this must be an error: ```python @typeclass def some(instance) -> None: x = 1 ```