aboutsummaryrefslogtreecommitdiff
path: root/test cases/failing/56 or on new line/meson.build
blob: 12f27058d0598ed2db185ba46d7f32513fb6940b (plain)
1
2
3
4
5
6
7
project('silent_or', 'c')

if get_option('foo') == 'true'
        or get_option('foo') == 'auto'
else
        message('If this message is printed then something is wrong. The or above should give a syntax error.')
endif