diff src/testdir/test_vim9_expr.vim @ 21168:f26a606e6dbc v8.2.1135

patch 8.2.1135: Vim9: getting a dict member may not work Commit: https://github.com/vim/vim/commit/50788ef34947aeb1729604cd3876845afbd15e3c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 5 16:51:26 2020 +0200 patch 8.2.1135: Vim9: getting a dict member may not work Problem: Vim9: getting a dict member may not work. Solution: Clear the dict only after copying the item.
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 Jul 2020 17:00:03 +0200
parents 64f664f9b23a
children 44611891e22c
line wrap: on
line diff
--- a/src/testdir/test_vim9_expr.vim
+++ b/src/testdir/test_vim9_expr.vim
@@ -1128,6 +1128,8 @@ def Test_expr7_dict_vim9script()
   CheckScriptFailure(lines, 'E1069:')
 enddef
 
+let g:oneString = 'one'
+
 def Test_expr_member()
   assert_equal(1, g:dict_one.one)
   let d: dict<number> = g:dict_one
@@ -1135,6 +1137,7 @@ def Test_expr_member()
 
   # getting the one member should clear the dict after getting the item
   assert_equal('one', #{one: 'one'}.one)
+  assert_equal('one', #{one: 'one'}[g:oneString])
 
   call CheckDefFailure(["let x = g:dict_one.#$!"], 'E1002:')
   call CheckDefExecFailure(["let d: dict<any>", "echo d['a']"], 'E716:')