From adfac399b1815731de6f12af1fc3e38516969dc7 Mon Sep 17 00:00:00 2001 From: fesily Date: Wed, 21 Feb 2024 15:02:35 +0800 Subject: add infer function param type --- test/diagnostics/await-in-sync.lua | 2 +- test/diagnostics/redundant-parameter.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test/diagnostics') diff --git a/test/diagnostics/await-in-sync.lua b/test/diagnostics/await-in-sync.lua index 323c1113..7647f2eb 100644 --- a/test/diagnostics/await-in-sync.lua +++ b/test/diagnostics/await-in-sync.lua @@ -119,7 +119,7 @@ end TEST [[ local function f(cb) - cb() + () end local function af() diff --git a/test/diagnostics/redundant-parameter.lua b/test/diagnostics/redundant-parameter.lua index fabe3340..520a6381 100644 --- a/test/diagnostics/redundant-parameter.lua +++ b/test/diagnostics/redundant-parameter.lua @@ -94,7 +94,7 @@ print(1, 2, 3, 4, 5) TEST [[ local function f(callback) - callback(1, 2, 3) + callback(, , ) end f(function () end) ]] -- cgit v1.2.3