Bram Moolenaar | 355a95a | 2014-04-29 14:03:02 +0200 | [diff] [blame] | 1 | " Vim script used in test_eval.in. Needed for script-local function. |
2 | |||||
3 | func! s:Testje() | ||||
4 | return "foo" | ||||
5 | endfunc | ||||
6 | let Bar = function('s:Testje') | ||||
7 | $put ='s:Testje exists: ' . exists('s:Testje') | ||||
8 | $put ='func s:Testje exists: ' . exists('*s:Testje') | ||||
9 | $put ='Bar exists: ' . exists('Bar') | ||||
10 | $put ='func Bar exists: ' . exists('*Bar') |