summaryrefslogtreecommitdiff
path: root/server/test/full
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-08-08 14:23:47 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-08-08 14:23:47 +0800
commit624afbf6ead64798a9fbb936eddeb179e8089e3f (patch)
treeeade282dbee14e399c92c07b020c12bb36a79965 /server/test/full
parent957693a43162559719dba79b67f9cd03a56f0f86 (diff)
downloadlua-language-server-624afbf6ead64798a9fbb936eddeb179e8089e3f.zip
#72 check nil
Diffstat (limited to 'server/test/full')
-rw-r--r--server/test/full/normal.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/test/full/normal.lua b/server/test/full/normal.lua
index facc0139..a673e74b 100644
--- a/server/test/full/normal.lua
+++ b/server/test/full/normal.lua
@@ -150,3 +150,8 @@ end
TEST [[
local x = ,
]]
+
+TEST [[
+---@type any|fun():nil
+local t
+]]