diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-22 00:56:51 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-22 00:56:51 +0800 |
commit | bac01d19d230594106cca59ff8abbd294a17ced4 (patch) | |
tree | 1a62ae52d626fc0b749759d32c9386a841eabe1f /test/diagnostics | |
parent | 533b04430eb34dbfb2e59f6f8d88f127e69ed133 (diff) | |
download | lua-language-server-bac01d19d230594106cca59ff8abbd294a17ced4.zip |
reset local
Diffstat (limited to 'test/diagnostics')
-rw-r--r-- | test/diagnostics/common.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/diagnostics/common.lua b/test/diagnostics/common.lua index f52a9b20..b8d3d18a 100644 --- a/test/diagnostics/common.lua +++ b/test/diagnostics/common.lua @@ -888,8 +888,8 @@ local v ---@type Bar local v2 v2 = v -- TODO 这里应该给警告 -v2:<!method1!>() -v2:method2() +v2:method1() +v2:<!method2!>() ]] TEST [[ |