diff options
Diffstat (limited to 'tests/basics/fun-annotations.py')
-rw-r--r-- | tests/basics/fun-annotations.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/basics/fun-annotations.py b/tests/basics/fun-annotations.py deleted file mode 100644 index 85f808ab5..000000000 --- a/tests/basics/fun-annotations.py +++ /dev/null @@ -1,4 +0,0 @@ -def foo(x: int, y: list) -> dict: - return {x: y} - -print(foo(1, [2, 3])) |