diff src/testdir/test_blob.vim @ 35136:f2b94f240b7d v9.1.0398

patch 9.1.0398: Vim9: imported vars are not properly type checked Commit: https://github.com/vim/vim/commit/9937d8b61922a02311509fb3352583d9e8c54885 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed May 8 20:24:33 2024 +0200 patch 9.1.0398: Vim9: imported vars are not properly type checked Problem: Vim9: imported vars are not properly type checked Solution: Check the imported variable type properly (Yegappan Lakshmanan) closes: #14729 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 08 May 2024 20:30:07 +0200
parents dbec60b8c253
children ddd5eaa2c0dc
line wrap: on
line diff
--- a/src/testdir/test_blob.vim
+++ b/src/testdir/test_blob.vim
@@ -97,6 +97,18 @@ func Test_blob_assign()
 
   let lines =<< trim END
       VAR b = 0zDEADBEEF
+      LET b[0 : 1] = 0x1122
+  END
+  call v9.CheckLegacyAndVim9Failure(lines, ['E709:', 'E1012:', 'E709:'])
+
+  let lines =<< trim END
+      VAR b = 0zDEADBEEF
+      LET b[0] = 0z11
+  END
+  call v9.CheckLegacyAndVim9Failure(lines, ['E974:', 'E974:', 'E1012:'])
+
+  let lines =<< trim END
+      VAR b = 0zDEADBEEF
       LET b ..= 0z33
   END
   call v9.CheckLegacyAndVim9Failure(lines, ['E734:', 'E1019:', 'E734:'])