view src/testdir/test_vim9_fails.vim @ 23419:63661c0e6694

Added tag v8.2.2252 for changeset 681f042ae5ac94f999f28a24f8090f082b17f375
author Bram Moolenaar <Bram@vim.org>
date Thu, 31 Dec 2020 13:45:05 +0100
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