summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-06-24 17:04:12 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-06-24 17:04:12 +0800
commitbcd360a954bdf0133dbcd2605e758aeda877ef7e (patch)
tree20aa03c8186070032f7839f7f1705e465deced44 /test
parente6c353e0cf4ea89d5fb27eac4bcae391917faa81 (diff)
downloadlua-language-server-bcd360a954bdf0133dbcd2605e758aeda877ef7e.zip
resolve #621
Diffstat (limited to 'test')
-rw-r--r--test/diagnostics/common.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/diagnostics/common.lua b/test/diagnostics/common.lua
index e6bc86ef..1f8a782d 100644
--- a/test/diagnostics/common.lua
+++ b/test/diagnostics/common.lua
@@ -1695,3 +1695,11 @@ local t
local n = t:upper()
]]
+
+TEST [[
+local t = {}
+
+function t:init() end
+
+<!t.init()!>
+]]