diff --git a/tests/01_int.py b/tests/01_int.py index 2c13964c..22dcc75f 100644 --- a/tests/01_int.py +++ b/tests/01_int.py @@ -139,6 +139,12 @@ try: except ZeroDivisionError: pass +try: + 1 / 0 + exit(1) +except ZeroDivisionError: + pass + assert not 1 < 2 > 3 try: