summaryrefslogtreecommitdiff
path: root/test/definition
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-05-12 15:00:19 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-05-12 15:00:19 +0800
commit690aadefc66e447b3f3205882c1fbcc8df987bda (patch)
tree33d0991d64febe384e16d5185677fcc9cc553a4c /test/definition
parentcbff022761f244cbb8940f812ede207c44ab2614 (diff)
downloadlua-language-server-690aadefc66e447b3f3205882c1fbcc8df987bda.zip
update
Diffstat (limited to 'test/definition')
-rw-r--r--test/definition/luadoc.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/definition/luadoc.lua b/test/definition/luadoc.lua
index e6827d65..14f24552 100644
--- a/test/definition/luadoc.lua
+++ b/test/definition/luadoc.lua
@@ -557,6 +557,13 @@ TEST [[
local Foo = {}
function Foo:<!bar1!>() end
+---@generic T: table, V
+---@param t T
+---@return fun(table: V[], i?: integer):integer, V
+---@return T
+---@return integer i
+local function ipairs(t) end
+
---@type table<number, table<number, Foo>>
local v1
for i, v in ipairs(v1) do