view src/testdir/test_assign.vim @ 8571:debe6347024d v7.4.1575

commit https://github.com/vim/vim/commit/89e375a88f3eceb73bbd97e78aca1a1c4647c897 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 15 18:09:57 2016 +0100 patch 7.4.1575 Problem: Using wrong size for struct. Solution: Use the size for wide API. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Mar 2016 18:15:04 +0100
parents 5104f96b6ecf
children 4dea7c96fc82
line wrap: on
line source

" 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