patch 8.2.3185: Vim9: start of inline function found in comment line
Problem: Vim9: start of inline function found in comment line.
Solution: Do not check for inline function in comment line. (closes #8589)
diff --git a/src/testdir/test_vim9_expr.vim b/src/testdir/test_vim9_expr.vim
index e7c08f4..49109c7 100644
--- a/src/testdir/test_vim9_expr.vim
+++ b/src/testdir/test_vim9_expr.vim
@@ -2075,6 +2075,10 @@
})
assert_equal(['no', 'yes', 'no'], dll)
+ # ignored_inline(0, (_) => {
+ # echo 'body'
+ # })
+
sandbox var Safe = (nr: number): number => {
return nr + 7
}