aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_assign.vim
blob: 3d2e7a899835291c5d129f8eefed033cd1a8ed23 (plain) (blame)
1
2
3
4
5
6
7
8
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