diff options
Diffstat (limited to 'tests/micropython/viper_binop_comp_imm.py')
-rw-r--r-- | tests/micropython/viper_binop_comp_imm.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/micropython/viper_binop_comp_imm.py b/tests/micropython/viper_binop_comp_imm.py index c7c040895..daab8fcfb 100644 --- a/tests/micropython/viper_binop_comp_imm.py +++ b/tests/micropython/viper_binop_comp_imm.py @@ -3,6 +3,7 @@ def f(a: int): print(a == -1, a == -255, a == -256, a == -257) + f(-1) f(-255) f(-256) |