mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.1395: Vim9: no error if declaring a funcref with lower case letter
Problem: Vim9: no error if declaring a funcref with a lower case letter. Solution: Check the name after the type is inferred. Fix confusing name.
This commit is contained in:
@@ -28,6 +28,7 @@ def Test_assignment()
|
||||
call CheckDefFailure(['let x:string'], 'E1069:')
|
||||
call CheckDefFailure(['let x:string = "x"'], 'E1069:')
|
||||
call CheckDefFailure(['let a:string = "x"'], 'E1069:')
|
||||
call CheckDefFailure(['let lambda = {-> "lambda"}'], 'E704:')
|
||||
|
||||
let nr: number = 1234
|
||||
call CheckDefFailure(['let nr: number = "asdf"'], 'E1013:')
|
||||
|
Reference in New Issue
Block a user