diff options
Diffstat (limited to 'test/diagnostics')
-rw-r--r-- | test/diagnostics/common.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/diagnostics/common.lua b/test/diagnostics/common.lua index 56d1cbcc..eddf9c26 100644 --- a/test/diagnostics/common.lua +++ b/test/diagnostics/common.lua @@ -283,6 +283,32 @@ x(1, 2) ]] TEST [[ +---@diagnostic disable: unused-local + +---@param a integer +---@param b integer +local function f(a, b) +end + +f(...) +]] + +TEST [[ +---@diagnostic disable: unused-local + +---@param a integer +---@param b integer +local function f(a, b) +end + +local function return2Numbers() + return 1, 2 +end + +f(return2Numbers()) +]] + +TEST [[ ---@param a integer ---@param b? integer local function x(a, b) |