1
0
forked from aniani/vim

patch 8.2.1996: Vim9: invalid error for argument of extend()

Problem:    Vim9: invalid error for argument of extend().
Solution:   Check if the type could match. (closes #7299)
This commit is contained in:
Bram Moolenaar
2020-11-16 20:08:35 +01:00
parent 714cbe5b21
commit 193f6201b4
7 changed files with 36 additions and 5 deletions

View File

@@ -820,7 +820,7 @@ generate_TYPECHECK(
* Return TRUE if "actual" could be "expected" and a runtime typecheck is to be
* used. Return FALSE if the types will never match.
*/
static int
int
use_typecheck(type_T *actual, type_T *expected)
{
if (actual->tt_type == VAR_ANY