diff src/testdir/test_vim9_script.vim @ 25149:18b31f0a4bb5 v8.2.3111

patch 8.2.3111: Vim9: confusing error with extra whitespace before colon Commit: https://github.com/vim/vim/commit/404557e6a60389d09bbf91dd0cf3bae11bd623b9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 5 21:41:48 2021 +0200 patch 8.2.3111: Vim9: confusing error with extra whitespace before colon Problem: Vim9: confusing error with extra whitespace before colon. Solution: Check for colon after white space. (closes https://github.com/vim/vim/issues/8513)
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Jul 2021 21:45:04 +0200
parents 075790758d11
children 610e15e8778d
line wrap: on
line diff
--- a/src/testdir/test_vim9_script.vim
+++ b/src/testdir/test_vim9_script.vim
@@ -2566,6 +2566,13 @@ def Test_for_loop_fails()
       endfor
   END
   CheckDefAndScriptFailure(lines, 'E1012: Type mismatch; expected number but got string', 1)
+
+  lines =<< trim END
+      for n : number in [1, 2]
+        echo n
+      endfor
+  END
+  CheckDefAndScriptFailure(lines, 'E1059:', 1)
 enddef
 
 def Test_for_loop_script_var()