diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-12-02 20:11:30 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-12-02 20:11:30 +0800 |
commit | 830be2cab0d5e45a32606bb33eba216c72a9ca66 (patch) | |
tree | 9e400ab0c69e238d5966d9f23918e4353c5ff09e /test | |
parent | 5833c2aef04bd4704c86104275411ef330981f85 (diff) | |
download | lua-language-server-830be2cab0d5e45a32606bb33eba216c72a9ca66.zip |
fully support Doc.type.array
Diffstat (limited to 'test')
-rw-r--r-- | test/type_inference/init.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/type_inference/init.lua b/test/type_inference/init.lua index 40831c07..84462da6 100644 --- a/test/type_inference/init.lua +++ b/test/type_inference/init.lua @@ -329,3 +329,16 @@ local <?x?> TEST 'table' [[ self.<?t?>[#self.t+1] = {} ]] + +TEST 'string' [[ +---@type string[] +local x +local <?y?> = x[1] +]] + +TEST 'string' [[ +---@return string[] +local function f() end +local x = f() +local <?y?> = x[1] +]] |