Files
RedBear-OS/local/recipes/dev/meson/source/test cases/failing/50 inconsistent comparison/meson.build
T

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')