This is currently allowed but fails at runtime: ```python from enum import Enum class Other(Enum): test = 1 Other.test = 2 ``` but it fails at runtime. This is a follow-up for https://github.com/python/mypy/pull/5522