8 lines
230 B
Meson
8 lines
230 B
Meson
project('kwarg before arg')
|
|
|
|
# All of these should fail, though only the first one will error out if
|
|
# everything's working correctly.
|
|
assert([] < 'st', 'should fail')
|
|
assert([] < 1, 'should fail')
|
|
assert(2 < 'st', 'should fail')
|