You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---@param bag table<integer, integer>
---@return integer
---@NODISCARD
local function foo(bag)
local sum = 0
for _, count in pairs(bag) do
sum = sum + count
end
return sum -- bug! sum is unknown
end