aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python/join_lines.py
blob: 491b2cc37592829b7c774b01ee5df65c0126e4dd (plain) (blame)
1
2
3
4
5
6
7
8
a = 2 \
    + 2

b = 'hello' \
    'world'

c = lambda x: \
    x + 3