diff options
Diffstat (limited to 'test/diagnostics/common.lua')
-rw-r--r-- | test/diagnostics/common.lua | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/test/diagnostics/common.lua b/test/diagnostics/common.lua index fab02caf..0df678d1 100644 --- a/test/diagnostics/common.lua +++ b/test/diagnostics/common.lua @@ -133,40 +133,6 @@ _ENV = nil ]] TEST [[ ----@diagnostic disable: undefined-global -_ENV = nil -<!print!>(<!A!>) -- `print` and `A` should warning -]] - -TEST [[ ----@diagnostic disable: undefined-global -local _ENV = nil -<!print!>(<!A!>) -- `print` and `A` should warning -]] - -TEST [[ -_ENV = {} -print(A) -- no warning -]] - -TEST [[ -local _ENV = {} -print(A) -- no warning -]] - -TEST [[ ----@type iolib -_ENV = {} -<!print!>(stderr) -- `print` is warning but `stderr` is not -]] - -TEST [[ ----@type iolib -local _ENV = {} -<!print!>(stderr) -- `print` is warning but `stderr` is not -]] - -TEST [[ local _ENV = { print = print } print(1) ]] |