Mercurial > vim
annotate src/testdir/test_nested_function.in @ 9068:0a3bc9fdea20 v7.4.1819
commit https://github.com/vim/vim/commit/827b165b2aebad2cfe98cc6d5804c6c0fe8afd89
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu May 5 18:14:03 2016 +0200
patch 7.4.1819
Problem: Compiler warnings when sprintf() is a macro.
Solution: Don't interrupt sprintf() with an #ifdef. (Michael Jarvis,
closes https://github.com/vim/vim/issues/788)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 05 May 2016 18:15:05 +0200 |
parents | 750a6986aa86 |
children |
rev | line source |
---|---|
6440 | 1 Tests for Nested function vim: set ft=vim : |
2 | |
3 STARTTEST | |
4 :so small.vim | |
5 :fu! NestedFunc() | |
6 : fu! Func1() | |
7 : $put ='Func1' | |
8 : endfunction | |
9 : call Func1() | |
10 : fu! s:func2() | |
11 : $put ='s:func2' | |
12 : endfunction | |
13 : call s:func2() | |
14 : fu! s:_func3() | |
15 : $put ='s:_func3' | |
16 : endfunction | |
17 : call s:_func3() | |
18 : let fn = 'Func4' | |
19 : fu! {fn}() | |
20 : $put ='Func4' | |
21 : endfunction | |
22 : call {fn}() | |
23 : let fn = 'func5' | |
24 : fu! s:{fn}() | |
25 : $put ='s:func5' | |
26 : endfunction | |
27 : call s:{fn}() | |
28 :endfunction | |
29 :call NestedFunc() | |
30 :/^result:/,$w! test.out | |
31 :qa! | |
32 ENDTEST | |
33 | |
34 result: |