Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_external_vim
/
2ec364e94dbc080ccdf6c5dfc6f1653b5b7ded64
/
.
/
src
/
testdir
/
test_eval_stuff.vim
blob: 92e1ec5335a2245c9b5094554794388649ef410b [
file
] [
log
] [
blame
]
" Tests for various eval things.
function s:foo() abort
try
return [] == 0
catch
return 1
endtry
endfunction
func Test_catch_return_with_error()
call assert_equal(1, s:foo())
endfunc