view src/testdir/test10.in @ 35136:f2b94f240b7d v9.1.0398

patch 9.1.0398: Vim9: imported vars are not properly type checked Commit: https://github.com/vim/vim/commit/9937d8b61922a02311509fb3352583d9e8c54885 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed May 8 20:24:33 2024 +0200 patch 9.1.0398: Vim9: imported vars are not properly type checked Problem: Vim9: imported vars are not properly type checked Solution: Check the imported variable type properly (Yegappan Lakshmanan) closes: #14729 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 08 May 2024 20:30:07 +0200
parents 9d7914012b82
children
line wrap: on
line source

Test that vim9script also works without the +eval feature.

STARTTEST
:/^START/+1,/^END/-1:w! Xvim9
:so Xvim9
ENDTEST

START
vim9script

if 1
  echo 'this is skipped without +eval'
endif

# colon required for a range
:$-1,$w! test.out
qa!
END

first line
last line