mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
* fix RHS of for..of loop not evaluated when LHS is array binding element with OmittedExpression * expand widened type check * add more test cases * update code with suggestions * Make test target es2015 Co-authored-by: Andrew Branch <andrew@wheream.io>
4 lines
70 B
TypeScript
4 lines
70 B
TypeScript
export function main() {
|
|
for (const [,] of doesNotExist) {
|
|
}
|
|
} |