summaryrefslogtreecommitdiffstats
path: root/test cases/common/204 line continuation/meson.build
blob: 16c72f9ae3ef26f879f9779b6d72972b387eb799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
project('line continuation')

a = 1
b = 2

c = a \
+b
assert(c == 3, 'Line continuation is not working')

d = a + \
  b
assert(d == 3, 'Line continuation is not working')

if a == 1 and \
   b == 3
  error('Line continuation in "if" condition is not working')
endif