This code (missing return type in `Callable`) crashes mypy with an uncaught `IndexError`: ``` python from typing import Callable def g(f: Callable[[int]]) -> None: pass ``` It should just report an error.