diff src/testdir/test_vim9_func.vim @ 24355:beb395ca3e2f v8.2.2718

patch 8.2.2718: Vim9: no explicit test for using a global function without g: Commit: https://github.com/vim/vim/commit/0865b15bc6d869d56713f674d66ad3d0509bf4b9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 5 15:38:51 2021 +0200 patch 8.2.2718: Vim9: no explicit test for using a global function without g: Problem: Vim9: no explicit test for using a global function without the g: prefix. Solution: Add a test case.
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Apr 2021 15:45:08 +0200
parents cabed216cc2f
children a97fb00978f6
line wrap: on
line diff
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -621,6 +621,30 @@ def Test_local_function_shadows_global()
   END
   CheckScriptFailure(lines, 'E705:')
   delfunc g:Func
+
+  # global function is found without g: prefix
+  lines =<< trim END
+      vim9script
+      def g:Func(): string
+        return 'global'
+      enddef
+      def AnotherFunc(): string
+        return Func()
+      enddef
+      assert_equal('global', AnotherFunc())
+    delfunc g:Func
+  END
+  CheckScriptSuccess(lines)
+
+  lines =<< trim END
+      vim9script
+      def g:Func(): string
+        return 'global'
+      enddef
+      assert_equal('global', Func())
+      delfunc g:Func
+  END
+  CheckScriptSuccess(lines)
 enddef
 
 func TakesOneArg(arg)