comparison src/testdir/test_vim9_disassemble.vim @ 22435:166a0f17b05e v8.2.1766

patch 8.2.1766: Vim9: Some tests are still using :let Commit: https://github.com/vim/vim/commit/7a9cbca00a8ec53306f8a5852e332feb79091793 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 27 22:47:05 2020 +0200 patch 8.2.1766: Vim9: Some tests are still using :let Problem: Vim9: Some tests are still using :let. Solution: Change the last few declarations to use :var.
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Sep 2020 23:00:04 +0200
parents eabc059a6ac4
children 0e03ef68e738
comparison
equal deleted inserted replaced
22434:70f3df42437e 22435:166a0f17b05e
1 " Test the :disassemble command, and compilation as a side effect 1 " Test the :disassemble command, and compilation as a side effect
2 2
3 source check.vim 3 source check.vim
4
5 " TODO: remove later
6 let v:disallow_let = 1
7 4
8 func NotCompiled() 5 func NotCompiled()
9 echo "not" 6 echo "not"
10 endfunc 7 endfunc
11 8