view src/testdir/test_vim9_fails.vim @ 24483:798fcf242d48

Added tag v8.2.2781 for changeset 3d5a66e478f815a48bf43b248755ff9876947e8f
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Apr 2021 14:15:04 +0200
parents a3df1fb28d44
children 744fdb15347d
line wrap: on
line source

" Test for Vim9 script with failures, causing memory leaks to be reported.
" The leaks happen after a fork() and can be ignored.

def Test_assignment()
  if has('channel')
    var chan1: channel
    var job1: job
    var job2: job = job_start('willfail')
  endif
enddef