vim-patch:7.4.1546

Problem:    Sticky type checking is more annoying than useful.
Solution:   Remove the error for changing a variable type.

f6f32c38bf

Note: There are a bunch of other changes to eval.txt that I believe are
N/A and not related to this patch.
This commit is contained in:
Patrick
2016-07-13 16:49:22 +10:00
parent dcbd1c7b13
commit a3dc7ef445
5 changed files with 15 additions and 27 deletions

View File

@@ -0,0 +1,9 @@
" Test for assignment
func Test_no_type_checking()
let v = 1
let v = [1,2,3]
let v = {'a':1, 'b':2}
let v = 3.4
let v = 'hello'
endfunc