diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-11-27 22:06:31 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-27 22:06:31 -0800 |
| commit | 86c4a87fe9a6ce7d5f8fb9de76490b1a0fa64538 (patch) | |
| tree | 312f751db4acd790b0b61f94a1d1a9de732062a7 /src/nvim/testdir/test_let.vim | |
| parent | 33beeed4d9c2bda79d48a58ec10e8b05e7de5122 (diff) | |
| parent | 585e3ddfc785abfd0022af4f9c84f13e24c41782 (diff) | |
| download | rneovim-86c4a87fe9a6ce7d5f8fb9de76490b1a0fa64538.tar.gz rneovim-86c4a87fe9a6ce7d5f8fb9de76490b1a0fa64538.tar.bz2 rneovim-86c4a87fe9a6ce7d5f8fb9de76490b1a0fa64538.zip | |
Merge #11467 from janlazo/vim-8.1.2345
vim-patch:8.1.{1252,1253,1254,1268,2345,2348,2349}
Diffstat (limited to 'src/nvim/testdir/test_let.vim')
| -rw-r--r-- | src/nvim/testdir/test_let.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_let.vim b/src/nvim/testdir/test_let.vim index 3c0fefbd25..0b9331ee38 100644 --- a/src/nvim/testdir/test_let.vim +++ b/src/nvim/testdir/test_let.vim @@ -24,6 +24,10 @@ func Test_let() let out = execute('let a {0 == 1 ? "a" : "b"}') let s = "\na #1\nb #2" call assert_equal(s, out) + + let x = 0 + if 0 | let x = 1 | endif + call assert_equal(0, x) endfunc func s:set_arg1(a) abort |