view src/testdir/test_comparators.vim @ 25032:123590c942b7 v8.2.3053

patch 8.2.3053: Vim9: cannot assign to @@ in :def function Commit: https://github.com/vim/vim/commit/13e45d14ba7f590fb243c041bc45e6d4d47c8432 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 26 13:28:35 2021 +0200 patch 8.2.3053: Vim9: cannot assign to @@ in :def function Problem: Vim9: cannot assign to @@ in :def function Solution: Handle '@' like '"'.
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Jun 2021 13:30:04 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" Test for comparators

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

" vim: shiftwidth=2 sts=2 expandtab