diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-08 18:31:50 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-08 18:31:50 +0800 |
commit | 9e8ae91901c096be13e6c7ef0cf865b0be7d0538 (patch) | |
tree | 154c1db2cf1209a7a84ba68889b10f90f260b428 /test/hover/init.lua | |
parent | d10eb1c80d40fe2b511a594888586862e69c6a35 (diff) | |
download | lua-language-server-9e8ae91901c096be13e6c7ef0cf865b0be7d0538.zip |
fix
Diffstat (limited to 'test/hover/init.lua')
-rw-r--r-- | test/hover/init.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/hover/init.lua b/test/hover/init.lua index 2ae6837f..4337c4a4 100644 --- a/test/hover/init.lua +++ b/test/hover/init.lua @@ -1816,3 +1816,15 @@ local <?x?> = '1' .. '2' [[ local x: string = "12" ]] + +TEST [[ +local t = { + x = 1, + [1] = 'x', +} + +local <?x?> = t[#t] +]] +[[ +local x: string = "x" +]] |