comparison src/testdir/test_vim9_import.vim @ 27563:a54064e14114 v8.2.4308

patch 8.2.4308: Vim9: cannot list autoload function Commit: https://github.com/vim/vim/commit/8164f6ea3cd675d0c22b058d71df2454fa108a35 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 6 13:08:41 2022 +0000 patch 8.2.4308: Vim9: cannot list autoload function Problem: Vim9: cannot list autoload function. Solution: Don't give an error for using # when listing a function. (closes #9703)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Feb 2022 14:15:03 +0100
parents df414fc12eed
children db1831f585a4
comparison
equal deleted inserted replaced
27562:410c62760ac6 27563:a54064e14114
1884 1884
1885 call another.Getother() 1885 call another.Getother()
1886 assert_equal('other', g:result) 1886 assert_equal('other', g:result)
1887 1887
1888 assert_equal('arg', call('another.RetArg', ['arg'])) 1888 assert_equal('arg', call('another.RetArg', ['arg']))
1889
1890 verbose function another.Getother
1891 # should we disallow this?
1892 verbose function another#Getother
1889 END 1893 END
1890 v9.CheckScriptSuccess(lines) 1894 v9.CheckScriptSuccess(lines)
1891 1895
1892 unlet g:result 1896 unlet g:result
1893 delete('Xdir', 'rf') 1897 delete('Xdir', 'rf')