luau icon indicating copy to clipboard operation
luau copied to clipboard

Setting variable to a table field with string literal type causes the variable to infer as generic string type

Open centau opened this issue 2 years ago • 0 comments

image

source:

type Color = "Red" | "Green" | "Blue"

local t: { color: Color }

local color = t.color

centau avatar May 23 '23 21:05 centau