luau-lang / luau

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

String keys are not checked against table indexer #1294

Open Ketasaja opened 3 weeks ago

Ketasaja commented 3 weeks ago

Tested on 0.629, no errors in strict or non-strict mode. Same behavior with old solver.

local _: {[boolean]: true} = {
    k = 1,
}