tests/micropython/viper_cond: Add test for large int as bool.
This commit is contained in:
parent
10830059c5
commit
49529f22d4
|
@ -23,3 +23,11 @@ def g():
|
||||||
if y:
|
if y:
|
||||||
print("y", y)
|
print("y", y)
|
||||||
g()
|
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()
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
not x False
|
not x False
|
||||||
x True
|
x True
|
||||||
y 1
|
y 1
|
||||||
|
z 65536
|
||||||
|
|
Loading…
Reference in New Issue