diff options
Diffstat (limited to 'tests/feature_check/complex.py')
-rw-r--r-- | tests/feature_check/complex.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/feature_check/complex.py b/tests/feature_check/complex.py new file mode 100644 index 000000000..a22eb52ce --- /dev/null +++ b/tests/feature_check/complex.py @@ -0,0 +1,6 @@ +try: + complex + print("complex") +except NameError: + print("no") + |