Observe how `*args` is wrongly "bound" here: ```py from ty_extensions import CallableTypeOf class C: def method(*args, **kwargs) -> None: ... def _(c: CallableTypeOf[C().method]): reveal_type(c) # (**kwargs) -> None ```