diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-08 14:35:56 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-08 14:35:56 +0800 |
commit | 67a341f3fa26e5a3140cde3420ef2269a84d478f (patch) | |
tree | 8c747faa574055b7dfe2a22ef3a8176100b90980 /test/diagnostics | |
parent | 0b898555f495b80f278fec01d2f3e6ec83b4952c (diff) | |
download | lua-language-server-67a341f3fa26e5a3140cde3420ef2269a84d478f.zip |
cleanup
Diffstat (limited to 'test/diagnostics')
-rw-r--r-- | test/diagnostics/common.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/diagnostics/common.lua b/test/diagnostics/common.lua index 37ea6bc7..f79f1872 100644 --- a/test/diagnostics/common.lua +++ b/test/diagnostics/common.lua @@ -1377,3 +1377,9 @@ TEST [[ TEST [[ ---@class A 1 ]] + +TEST [[ +local value +value = '1' +value = value:gsub() +]] |