diff src/testdir/test_vim9_cmd.vim @ 26660:2b17f87b7bd1 v8.2.3859

patch 8.2.3859: Vim9: some code lines not tested Commit: https://github.com/vim/vim/commit/a99fb23842f055c511bfe1b62de7bbd14d5a99c0 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 20 12:25:03 2021 +0000 patch 8.2.3859: Vim9: some code lines not tested Problem: Vim9: some code lines not tested. Solution: Add a few specific tests.
author Bram Moolenaar <Bram@vim.org>
date Mon, 20 Dec 2021 13:30:03 +0100
parents ed73553992bf
children 69a48bcd1d80
line wrap: on
line diff
--- a/src/testdir/test_vim9_cmd.vim
+++ b/src/testdir/test_vim9_cmd.vim
@@ -1392,6 +1392,10 @@ def Test_lockvar()
   s:theList[1] = 44
   assert_equal([1, 44, 3], s:theList)
 
+  if 0
+    lockvar whatever
+  endif
+
   var d = {a: 1, b: 2}
   d.a = 3
   d.b = 4