summaryrefslogtreecommitdiff
path: root/src/testdir/test_assign.vim
blob: c1f036a0f2245c0d0f703ac00f74a2ea97329da6 (plain)
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