summaryrefslogtreecommitdiff
path: root/src/testdir
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-02-17 21:12:08 +0100
committerBram Moolenaar <Bram@vim.org>2020-02-17 21:12:08 +0100
commitb13af50f73dd89503c915f76fcf92be58789521a (patch)
tree96f5ae568b5d9aaeaf9c9621f681e769c1b99c5e /src/testdir
parent40d9da2a4395025169ebaf53a63618adfa737e96 (diff)
downloadvim-git-b13af50f73dd89503c915f76fcf92be58789521a.tar.gz
patch 8.2.0269: Vim9: operator after list index does not workv8.2.0269
Problem: Vim9: operator after list index does not work. (Yasuhiro Matsumoto) Solution: After indexing a list change the type to the list member type. (closes #5651)
Diffstat (limited to 'src/testdir')
-rw-r--r--src/testdir/test_vim9_expr.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/testdir/test_vim9_expr.vim b/src/testdir/test_vim9_expr.vim
index 1ff713126..c0767f517 100644
--- a/src/testdir/test_vim9_expr.vim
+++ b/src/testdir/test_vim9_expr.vim
@@ -478,6 +478,17 @@ def Test_expr6()
assert_equal(2, g:anint % g:alsoint)
assert_equal(4, 6 * 4 / 6)
+
+ let x = [2]
+ let y = [3]
+ assert_equal(5, x[0] + y[0])
+ assert_equal(6, x[0] * y[0])
+ if has('float')
+ let xf = [2.0]
+ let yf = [3.0]
+ assert_equal(5.0, xf[0] + yf[0])
+ assert_equal(6.0, xf[0] * yf[0])
+ endif
enddef
def Test_expr6_float()
@@ -538,6 +549,10 @@ func Test_expr6_fails()
call CheckDefFailure("let x = #{one: 1} / #{two: 2}", 'E1036:')
call CheckDefFailure("let x = #{one: 1} % #{two: 2}", 'E1035:')
+ call CheckDefFailure("let x = 0xff[1]", 'E714:')
+ if has('float')
+ call CheckDefFailure("let x = 0.7[1]", 'E714:')
+ endif
endfunc
func Test_expr6_float_fails()