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

8 lines
163 B
TypeScript
Raw Normal View History

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