Skip to content

Instantly share code, notes, and snippets.

@mattn
Created April 18, 2012 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattn/2412167 to your computer and use it in GitHub Desktop.
Save mattn/2412167 to your computer and use it in GitHub Desktop.
function! s:e724()
let a = {}
let a.a = a
return a
endfunction
try
echo s:e724()
catch
echo 'error!'
endtry
echo '---------'
try
12verbose echo s:e724()
catch
echo 'error!'
endtry
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment