(Re-)definitions of class variables outside the body of the class are currently not checked: ```py class C: c: str = "foo" C.c = 1 # <-- no error here ```