diff src/testdir/test_vim9_func.vim @ 21588:9ade1da22402 v8.2.1344

patch 8.2.1344: Vim9: No test for trying to redefine global function Commit: https://github.com/vim/vim/commit/2c79e9d14dc0e61d8c357946d01107ec23ec0fe2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 1 18:57:52 2020 +0200 patch 8.2.1344: Vim9: No test for trying to redefine global function Problem: Vim9: No test for trying to redefine global function. Solution: Add a test.
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Aug 2020 19:00:04 +0200
parents 5470c36ed7e6
children 7028f45bf0ea
line wrap: on
line diff
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -159,6 +159,19 @@ def Test_nested_global_function()
       delfunc g:Inner
   END
   CheckScriptSuccess(lines)
+
+  lines =<< trim END
+      vim9script
+      def Outer()
+          def g:Inner(): string
+              return 'inner'
+          enddef
+      enddef
+      defcompile
+      Outer()
+      Outer()
+  END
+  CheckScriptFailure(lines, "E122:")
 enddef
 
 def Test_global_local_function()