Demo: ``` python from typing import Any A = ... # type: Any class C(A): def __init__(self): super(C, self).__init__(1, 2, 3) # E: Too many arguments for "__init__" of "object" ```
Demo: