mirror of
https://github.com/vim/vim.git
synced 2025-09-30 04:44:14 -04:00
patch 8.2.0714: Vim9: handling constant expression does not scale
Problem: Vim9: handling constant expression does not scale. Solution: Use another solution, passint typval_T.
This commit is contained in:
@@ -485,9 +485,8 @@ def Test_expr5()
|
||||
assert_equal(-6, g:alsoint - g:anint)
|
||||
|
||||
assert_equal('hello', 'hel' .. 'lo')
|
||||
" TODO: a line break here doesn't work
|
||||
" assert_equal('hello 123', 'hello ' ..
|
||||
" 123)
|
||||
assert_equal('hello 123', 'hello ' ..
|
||||
123)
|
||||
assert_equal('hello 123', 'hello ' .. 123)
|
||||
assert_equal('123 hello', 123 .. ' hello')
|
||||
assert_equal('123456', 123 .. 456)
|
||||
|
Reference in New Issue
Block a user