diff options
author | Martin Fischer <martin@push-f.com> | 2022-03-01 06:07:03 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-03-01 06:07:03 +0100 |
commit | 7622571695e7c07064ca950bff6845f2b2ecc372 (patch) | |
tree | 296796d95255007a79b9b36cb8a6d984b5b4229c | |
parent | a080a080f61d945712f17f68882b3b3b5781e1c8 (diff) |
add puzzles/xtra_new_and_init_mismatch.py
-rw-r--r-- | puzzles/xtra_new_and_init_mismatch.py | 6 |
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 |