0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 8.2.3558: Vim9: asserting the wrong variable

Problem:    Vim9: asserting the wrong variable.
Solution:   Don't use Foo, use Goo.
This commit is contained in:
Bram Moolenaar 2021-10-23 10:25:21 +01:00
parent 5fe07d2e08
commit 06ca48a40f
2 changed files with 3 additions and 1 deletions

View File

@ -1495,7 +1495,7 @@ def Test_import_funcref()
def DoTest()
const Goo = G()
assert_equal(42, Foo)
assert_equal(42, Goo)
enddef
DoTest()
END

View File

@ -757,6 +757,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3558,
/**/
3557,
/**/