Files
neovim/src/nvim/testdir/test_assign.vim
Patrick a3dc7ef445 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.
2016-07-13 17:47:46 +10:00

10 lines
147 B
VimL

" 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