view src/testdir/test_comparators.vim @ 21336:e622da2979a0

Added tag v8.2.1218 for changeset af3663df42bf064e1ff8c520df25aca7695c5372
author Bram Moolenaar <Bram@vim.org>
date Wed, 15 Jul 2020 14:30:04 +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