Skip to content

Instantly share code, notes, and snippets.

@kunigami
Last active December 30, 2019 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/91cb65de62cef78b5a3e465019bd5579 to your computer and use it in GitHub Desktop.
Save kunigami/91cb65de62cef78b5a3e465019bd5579 to your computer and use it in GitHub Desktop.
def dummy(x: object) -> object:
return x
def inc(x: int) -> int:
return x + 1
dummy(Square()) # ok
inc(dummy(1)) # error - dummy(1) returns object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment