Skip to content

Instantly share code, notes, and snippets.

@mypy-play
Created January 24, 2026 03:27
Show Gist options
  • Select an option

  • Save mypy-play/74cdf8fb4a608a6101a08849998e6ddc to your computer and use it in GitHub Desktop.

Select an option

Save mypy-play/74cdf8fb4a608a6101a08849998e6ddc to your computer and use it in GitHub Desktop.
Shared via mypy Playground
def f(x: type[list[int]]):
reveal_type(x)
g(x)
def g(x: type[list[str]]):
reveal_type(x)
f(x)
f(list)
g(list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment