diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-07-15 14:58:57 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-07-15 14:58:57 +0800 |
commit | 0a86f339d0eea44404502ae4cda8022a2ea21f27 (patch) | |
tree | 39cab1bc9f638d76e9e81bd5101acbeafeff7fdb /test | |
parent | dc2cb90f2b22b67b8cebc4996cec4f6c3e5c37dd (diff) | |
download | lua-language-server-0a86f339d0eea44404502ae4cda8022a2ea21f27.zip |
fix #598
Diffstat (limited to 'test')
-rw-r--r-- | test/hover/init.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/hover/init.lua b/test/hover/init.lua index 18482de5..4f339c87 100644 --- a/test/hover/init.lua +++ b/test/hover/init.lua @@ -1664,3 +1664,10 @@ local t: { [10]: string = "d", } ]] + +TEST [[ +function f1.f2.<?f3?>() end +]] +[[ +function f1.f2.f3() +]] |