diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-08-16 17:04:25 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-08-16 17:04:25 +0800 |
commit | be5b77b7956970647d4d12d0e83ccf9bb410565b (patch) | |
tree | d5a1e94e71b309524da9f6a4a9fa23c5e2f077b4 /test/diagnostics | |
parent | b53c18f1fe69c07c65378892ea42346c593f5023 (diff) | |
download | lua-language-server-be5b77b7956970647d4d12d0e83ccf9bb410565b.zip |
supports `---@enum (key)`
Diffstat (limited to 'test/diagnostics')
-rw-r--r-- | test/diagnostics/param-type-mismatch.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/diagnostics/param-type-mismatch.lua b/test/diagnostics/param-type-mismatch.lua index 2a4bfcb1..e31e9933 100644 --- a/test/diagnostics/param-type-mismatch.lua +++ b/test/diagnostics/param-type-mismatch.lua @@ -91,6 +91,22 @@ f(<!{ h = 1 }!>) ]] TEST [[ +---@enum(key) A +local t = { + x = 1, + ['y'] = 2, +} + +---@param x A +local function f(x) +end + +f('x') +f('y') +f(<!'z'!>) +]] + +TEST [[ ---@generic T: string | boolean | table ---@param x T ---@return T |