summaryrefslogtreecommitdiff
path: root/test/diagnostics/redundant-parameter.lua
diff options
context:
space:
mode:
authorfesily <fesil@foxmail.com>2024-01-16 13:38:52 +0800
committerfesily <fesil@foxmail.com>2024-01-16 13:38:52 +0800
commit10275c3667256e720371ce5280658c3e4f950d2f (patch)
tree27e45d80798e70c022d6031d7a716300849dcd9e /test/diagnostics/redundant-parameter.lua
parent4432dfea0fe8390be166b832a1ac416c8228296f (diff)
downloadlua-language-server-10275c3667256e720371ce5280658c3e4f950d2f.zip
automatic derivation function param type
Diffstat (limited to 'test/diagnostics/redundant-parameter.lua')
-rw-r--r--test/diagnostics/redundant-parameter.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/diagnostics/redundant-parameter.lua b/test/diagnostics/redundant-parameter.lua
index fabe3340..520a6381 100644
--- a/test/diagnostics/redundant-parameter.lua
+++ b/test/diagnostics/redundant-parameter.lua
@@ -94,7 +94,7 @@ print(1, 2, 3, 4, 5)
TEST [[
local function f(callback)
- callback(1, 2, 3)
+ callback(<!1!>, <!2!>, <!3!>)
end
f(function () end)
]]