luau-lang / luau

A fast, small, safe, gradually typed embeddable scripting language derived from Lua
https://luau.org
MIT License
3.98k stars 373 forks source link

Inserting into a table with __mode v fails statically #1240

Open Kampfkarren opened 5 months ago

Kampfkarren commented 5 months ago
--!strict
local weaks = setmetatable({} :: { number }, { __mode = "v" })
table.insert(weaks, 5)

image