Skip to content
Snippets Groups Projects
Commit 49529f22 authored by Damien George's avatar Damien George
Browse files

tests/micropython/viper_cond: Add test for large int as bool.

parent 10830059
No related branches found
No related tags found
No related merge requests found
......@@ -23,3 +23,11 @@ def g():
if y:
print("y", y)
g()
# using an int as a conditional that has the lower 16-bits clear
@micropython.viper
def h():
z = 0x10000
if z:
print("z", z)
h()
not x False
x True
y 1
z 65536
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment