local t = setmetatable({}, {
__call = print
})
t() --> Cannot call non-function t
The expectation is that t()
will not show a warning, as it will be interpreted as print
.
Windows 10
local t = setmetatable({}, {
__call = print
})
t() --> Cannot call non-function t
The expectation is that t()
will not show a warning, as it will be interpreted as print
.
Windows 10
Thanks for the report! We’ve filed a ticket to our internal database and we’ll follow up when we have an update for you.