meson.build 235 B

12345678
  1. project('kwarg before arg', 'c')
  2. # All of these should fail, though only the first one will error out if
  3. # everything's working correctly.
  4. assert([] < 'st', 'should fail')
  5. assert([] < 1, 'should fail')
  6. assert(2 < 'st', 'should fail')