summaryrefslogtreecommitdiff
path: root/pylint/test/functional/typing_use.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/typing_use.py')
-rw-r--r--pylint/test/functional/typing_use.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/pylint/test/functional/typing_use.py b/pylint/test/functional/typing_use.py
new file mode 100644
index 000000000..3e2c48ba0
--- /dev/null
+++ b/pylint/test/functional/typing_use.py
@@ -0,0 +1,51 @@
+# pylint: disable=missing-docstring
+
+import typing
+
+
+@typing.overload
+def double_with_docstring(arg: str) -> str:
+ """Return arg, concatenated with itself."""
+
+
+@typing.overload
+def double_with_docstring(arg: int) -> int:
+ """Return twice arg."""
+
+
+def double_with_docstring(arg):
+ """Return 2 * arg."""
+ return 2 * arg
+
+
+def double_with_docstring(arg): # [function-redefined]
+ """Redefined function implementation"""
+ return 2 * arg
+
+
+@typing.overload
+def double_with_ellipsis(arg: str) -> str:
+ ...
+
+
+@typing.overload
+def double_with_ellipsis(arg: int) -> int:
+ ...
+
+
+def double_with_ellipsis(arg):
+ return 2 * arg
+
+
+@typing.overload
+def double_with_pass(arg: str) -> str:
+ pass
+
+
+@typing.overload
+def double_with_pass(arg: int) -> int:
+ pass
+
+
+def double_with_pass(arg):
+ return 2 * arg