TypeScript/tests/baselines/reference/for-inStatementsDestructuring3.js

8 lines
155 B
TypeScript

//// [for-inStatementsDestructuring3.ts]
var a, b;
for ([a, b] in []) { }
//// [for-inStatementsDestructuring3.js]
var a, b;
for ([a, b] in []) { }