Following feels wrong. ```python from paramclasses import * class A(ParamClass): x = protected(0) class B: ... class C(B, A): ... B.x = 1 C.x # 1 ``` Think about what should be wanted.