Before: ```lua type foo = { [("bar" | "baz")]: any, } ``` After: ```lua type foo = { ["bar" | "baz"]: any, -- syntax error } ```