summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2022-03-01 06:07:03 +0100
committerMartin Fischer <martin@push-f.com>2022-03-01 06:07:03 +0100
commit7622571695e7c07064ca950bff6845f2b2ecc372 (patch)
tree296796d95255007a79b9b36cb8a6d984b5b4229c
parenta080a080f61d945712f17f68882b3b3b5781e1c8 (diff)
add puzzles/xtra_new_and_init_mismatch.py
-rw-r--r--puzzles/xtra_new_and_init_mismatch.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/puzzles/xtra_new_and_init_mismatch.py b/puzzles/xtra_new_and_init_mismatch.py
new file mode 100644
index 0000000..63debc0
--- /dev/null
+++ b/puzzles/xtra_new_and_init_mismatch.py
@@ -0,0 +1,6 @@
+class Foo:
+ def __new__(cls, a: int) -> 'Foo':
+ raise NotImplementedError()
+
+ def __init__(self, a: str): # error
+ pass