mirror of
https://github.com/neovim/neovim.git
synced 2026-02-12 07:21:49 +10:00
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.
10 lines
147 B
VimL
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
|