summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/iter0.py
blob: 6110e8fa586250df8012cbfee451713aee1ae2c5 (plain) (blame)
1
2
3
4
5
6
# builtin type that is not iterable
try:
    for i in 1:
        pass
except TypeError:
    print('TypeError')