patch 8.2.1425: Vim9: cannot use call() without :call

Problem:    Vim9: cannot use call() without :call.
Solution:   Do not skip over "call(". (closes #6689)
diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim
index 772b52a..24078f5 100644
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -290,6 +290,12 @@
   CheckScriptFailure(lines, 'E1013:')
 enddef
 
+def Test_call_call()
+  let l = [3, 2, 1]
+  call('reverse', [l])
+  assert_equal([1, 2, 3], l)
+enddef
+
 let s:value = ''
 
 def FuncOneDefArg(opt = 'text')