mirror of
https://github.com/micropython/micropython.git
synced 2026-05-01 13:20:14 +02:00
214179b430
This is intended to improve coverage of the test suite.
8 lines
120 B
Python
8 lines
120 B
Python
# test basic int operations
|
|
|
|
# test conversion of bool on RHS of binary op
|
|
a = False
|
|
print(1 + a)
|
|
a = True
|
|
print(1 + a)
|