aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/63 array arithmetic/meson.build
blob: 8b8785afc8580783611740750d496a928623392f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project('array arithmetic', 'c')

array1 = ['foo', 'bar']
array2 = ['qux', 'baz']

if array1 + array2 != ['foo', 'bar', 'qux', 'baz']
  error('Array concatenation is broken')
endif
if array2 + array1 != ['qux', 'baz', 'foo', 'bar']
  error('Array concatenation is broken')
endif

if array1 + array1 + array1 != ['foo', 'bar', 'foo', 'bar', 'foo', 'bar']
  error('Many-array concatenation is broken')
endif