blob: e09eb6543d44f1f69eb54f0b17155af3499885f0 [file] [log] [blame]
Bram Moolenaarfc8aa6d2020-10-12 20:31:26 +02001" Test for Vim9 script with failures, causing memory leaks to be reported.
2" The leaks happen after a fork() and can be ignored.
3
4def Test_assignment()
5 if has('channel')
6 var chan1: channel
7 var job1: job
8 var job2: job = job_start('willfail')
9 endif
10enddef