diff src/testdir/test_vim9_expr.vim @ 20318:3cbcee39fc5c v8.2.0714

patch 8.2.0714: Vim9: handling constant expression does not scale Commit: https://github.com/vim/vim/commit/f0eefce93bb06037a2d45e7ea8c0ad6f1f714151 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 7 22:19:01 2020 +0200 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.
author Bram Moolenaar <Bram@vim.org>
date Thu, 07 May 2020 22:30:03 +0200
parents 9a5e2370df0e
children 445c2b2ea44b
line wrap: on
line diff
--- a/src/testdir/test_vim9_expr.vim
+++ b/src/testdir/test_vim9_expr.vim
@@ -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)