comparison src/testdir/test_vim9_assign.vim @ 25135:5731bcaaabcb v8.2.3104

patch 8.2.3104: Vim9: unspecified function type causes type error Commit: https://github.com/vim/vim/commit/b7480cd8931fa1696265f75c7d4d9fdf0be69e12 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 4 18:28:15 2021 +0200 patch 8.2.3104: Vim9: unspecified function type causes type error Problem: Vim9: unspecified function type causes type error. Solution: Don't check type when min_argcount is negative. (issue https://github.com/vim/vim/issues/8492)
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Jul 2021 18:30:03 +0200
parents b825efff9790
children 34f18d4081af
comparison
equal deleted inserted replaced
25134:2edd38379795 25135:5731bcaaabcb
657 def TwoArgs(x: bool, y: bool) 657 def TwoArgs(x: bool, y: bool)
658 enddef 658 enddef
659 var fl: list<func(bool, bool, bool)> = [OneArg, TwoArgs] 659 var fl: list<func(bool, bool, bool)> = [OneArg, TwoArgs]
660 END 660 END
661 CheckDefExecAndScriptFailure(lines, 'E1012:', 5) 661 CheckDefExecAndScriptFailure(lines, 'E1012:', 5)
662 enddef
663
664 def PartFunc(b: bool): string
665 return 'done'
666 enddef
667
668 def Test_assignment_partial()
669 var Partial: func(): string = function(PartFunc, [true])
670 assert_equal('done', Partial())
662 enddef 671 enddef
663 672
664 def Test_assignment_list_any_index() 673 def Test_assignment_list_any_index()
665 var l: list<number> = [1, 2] 674 var l: list<number> = [1, 2]
666 for [x, y, _] 675 for [x, y, _]