Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_external_vim
/
f6f32c38bf3319144a84a01a154c8c91939e7acf
/
.
/
src
/
testdir
/
test_assign.vim
blob: c1f036a0f2245c0d0f703ac00f74a2ea97329da6 [
file
] [
log
] [
blame
]
Bram Moolenaar
f6f32c3
2016-03-12 19:03:59 +0100
[
diff
] [
blame^
]
1
" Test for assignment
2
3
func Test_no_type_checking()
4
let v = 1
5
let v = [1,2,3]
6
let v = {'a': 1, 'b': 2}
7
let v = 3.4
8
let v = 'hello'
9
endfunc