``` class A: @staticmethod @check_shapes(...) def f(...): ... class B(A): @staticmethod @inherit_check_shapes def f(...): ... ``` Does not seem to work.