diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-08-08 14:23:47 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-08-08 14:23:47 +0800 |
commit | 624afbf6ead64798a9fbb936eddeb179e8089e3f (patch) | |
tree | eade282dbee14e399c92c07b020c12bb36a79965 /server/test/full | |
parent | 957693a43162559719dba79b67f9cd03a56f0f86 (diff) | |
download | lua-language-server-624afbf6ead64798a9fbb936eddeb179e8089e3f.zip |
#72 check nil
Diffstat (limited to 'server/test/full')
-rw-r--r-- | server/test/full/normal.lua | 5 |
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 +]] |