summaryrefslogtreecommitdiff
path: root/python/testData/debug/test_continuation2.py
blob: 3b0246db511c8b65e9e76ceda6409fbd789e8498 (plain)
1
2
3
4
5
6
7
8
x = 0
print(x)
x = 1+\
2+\
3
print(x)
x=2
print(x)