comparison src/testdir/test_vim9_assign.vim @ 25022:39551b6e0112 v8.2.3048

patch 8.2.3048: strange error for white space after ++ command Commit: https://github.com/vim/vim/commit/22480d147fe83cb31316d2dabc5c5f249477af15 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 25 21:31:09 2021 +0200 patch 8.2.3048: strange error for white space after ++ command Problem: Strange error for white space after ++ command. Solution: Check for white space explicitly. (closes https://github.com/vim/vim/issues/8440)
author Bram Moolenaar <Bram@vim.org>
date Fri, 25 Jun 2021 21:45:03 +0200
parents 91f396f149d5
children 123590c942b7
comparison
equal deleted inserted replaced
25021:bff757c48ad5 25022:39551b6e0112
1904 --g:count 1904 --g:count
1905 assert_equal(1, g:count) 1905 assert_equal(1, g:count)
1906 unlet g:count 1906 unlet g:count
1907 END 1907 END
1908 CheckDefAndScriptSuccess(lines) 1908 CheckDefAndScriptSuccess(lines)
1909
1910 lines =<< trim END
1911 var nr = 7
1912 ++ nr
1913 END
1914 CheckDefAndScriptFailure(lines, "E1202: No white space allowed after '++': ++ nr")
1909 enddef 1915 enddef
1910 1916
1911 1917
1912 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker 1918 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker