``` from typing import Type, TypeVar T = TypeVar('T', bound='BaseClass') class BaseClass: pass class SubClass(BaseClass): @classmethod def foo(cls: Type[T]) -> None: super().bar() ``` mypy 0.730 newly (vs 0.720) reports the false error: > error: Argument 2 for "super" not an instance of argument 1