0
0
mirror of https://github.com/vim/vim.git synced 2025-10-28 09:27:14 -04:00

patch 8.2.1791: Vim9: debugger test fails

Problem:    Vim9: debugger test fails.
Solution:   Use "var" instead of "let".
This commit is contained in:
Bram Moolenaar
2020-10-03 14:14:56 +02:00
parent 794771cfd8
commit 1bdae40323
2 changed files with 3 additions and 1 deletions

View File

@@ -859,7 +859,7 @@ func Test_Backtrace_DefFunction()
vim9script
def DoAThing(): number
let a = 100 * 2
var a = 100 * 2
a += 3
return a
enddef