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

8 lines
155 B
TypeScript
Raw Normal View History

2015-02-27 03:16:21 +01:00
//// [for-inStatementsDestructuring3.ts]
var a, b;
for ([a, b] in []) { }
//// [for-inStatementsDestructuring3.js]
var a, b;
for ([a, b] in []) { }