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:
parent
5fe07d2e08
commit
06ca48a40f
@ -1495,7 +1495,7 @@ def Test_import_funcref()
|
|||||||
|
|
||||||
def DoTest()
|
def DoTest()
|
||||||
const Goo = G()
|
const Goo = G()
|
||||||
assert_equal(42, Foo)
|
assert_equal(42, Goo)
|
||||||
enddef
|
enddef
|
||||||
DoTest()
|
DoTest()
|
||||||
END
|
END
|
||||||
|
@ -757,6 +757,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3558,
|
||||||
/**/
|
/**/
|
||||||
3557,
|
3557,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user