view src/testdir/test_comparators.vim @ 17721:e17680ecb70d

Added tag v8.1.1857 for changeset 844f470532b65e0ea9a3f2fc05d9bc57d02b6683
author Bram Moolenaar <Bram@vim.org>
date Fri, 16 Aug 2019 20:45:05 +0200
parents 140d51d5b5c3
children 08940efa6b4e
line wrap: on
line source

function Test_Comparators()
  try
    let oldisident=&isident
    set isident+=#
    call assert_equal(1, 1 is#1)
  finally
    let &isident=oldisident
  endtry
endfunction