forked from aniani/vim
patch 8.1.2348: :const cannot be followed by "| endif"
Problem: :const cannot be followed by "| endif". Solution: Check following command for :const. (closes #5269) Also fix completion after :const.
This commit is contained in:
@@ -197,6 +197,12 @@ func Test_cannot_modify_existing_variable()
|
||||
call assert_fails('const [i2, f2, s2] = [1, 1.1, "vim"]', 'E995:')
|
||||
endfunc
|
||||
|
||||
func Test_const_with_condition()
|
||||
const x = 0
|
||||
if 0 | const x = 1 | endif
|
||||
call assert_equal(0, x)
|
||||
endfunc
|
||||
|
||||
func Test_const_with_index_access()
|
||||
let l = [1, 2, 3]
|
||||
call assert_fails('const l[0] = 4', 'E996:')
|
||||
|
||||
Reference in New Issue
Block a user