summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/int2.py
blob: 9ef20f9c9002c203f09010e7eb691084cf973827 (plain) (blame)
1
2
3
4
5
6
7
# test basic int operations

# test conversion of bool on RHS of binary op
a = False
print(1 + a)
a = True
print(1 + a)