### Summary ```py from typing import overload @overload def f(a: int) -> int: ... @overload def f(a: str) -> str: ... def f(a): return 1 # expect error about this implementation being invalid ``` ### Version _No response_