diff --git a/src/testdir/test_vim9_generics.vim b/src/testdir/test_vim9_generics.vim index 07648a3326..48b31b043c 100644 --- a/src/testdir/test_vim9_generics.vim +++ b/src/testdir/test_vim9_generics.vim @@ -417,8 +417,12 @@ def Test_generic_func_typename() Fn>>([[0z10, 0z20], [0z30]], 'list>') Fn>((1, 'abc'), 'tuple') Fn>({a: 'a', b: 'b'}, 'dict') - Fn(test_null_job(), 'job') - Fn(test_null_channel(), 'channel') + if has('job') + Fn(test_null_job(), 'job') + endif + if has('channel') + Fn(test_null_channel(), 'channel') + endif Fn(function('Foo'), 'func(list, dict): list') END v9.CheckSourceSuccess(lines) diff --git a/src/version.c b/src/version.c index 78fb7bea17..df2c7f0508 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1901, /**/ 1900, /**/