summaryrefslogtreecommitdiff
path: root/test/hover/init.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-11-08 20:35:02 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-11-08 20:35:02 +0800
commitc082743f26413673dc71cf04f6f25c4f9e34f96c (patch)
tree4b604e29de6623913d02ac128572829ed45c8262 /test/hover/init.lua
parent3c265f1bd4409c5713e88127e8fdca23870ea3c1 (diff)
downloadlua-language-server-c082743f26413673dc71cf04f6f25c4f9e34f96c.zip
cleanup
Diffstat (limited to 'test/hover/init.lua')
-rw-r--r--test/hover/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/hover/init.lua b/test/hover/init.lua
index d5c47ddf..974e0740 100644
--- a/test/hover/init.lua
+++ b/test/hover/init.lua
@@ -245,7 +245,7 @@ TEST [[
<?print?>()
]]
[[
-function print(...)
+function print(...: any)
]]
TEST [[
@@ -299,7 +299,7 @@ end
<?x?>(1, 2, 3, 4, 5, 6, 7)
]]
[[
-function x(a: any, ...)
+function x(a: any, ...: any)
]]
TEST [[