mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Update rfcs/unsealed-table-assign-indexer.md
Co-authored-by: Andy Friesen <afriesen@roblox.com>
This commit is contained in:
parent
2660cfa97c
commit
fe57e7fc92
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ the system to be unsound, for example:
|
|||
|
||||
```lua
|
||||
local t = { u = {} }
|
||||
local u : { p = 37 } = { p = 37, q = "hi" }
|
||||
local u : { p: number } = { p = 37, q = "hi" }
|
||||
t = { u = u }
|
||||
local x: number? = t.u["p"]
|
||||
local y: number? = t.u["q"] -- This is "hi" at run-time
|
||||
|
|
Loading…
Add table
Reference in a new issue