TypeScript/tests/cases/conformance/es6/destructuring/emptyAssignmentPatterns03_ES5iterable.ts

8 lines
117 B
TypeScript
Raw Normal View History

2016-11-19 02:55:06 +01:00
// @target: es5
// @declaration: true
// @downlevelIteration: true
2016-11-19 02:55:06 +01:00
var a: any;
({} = {} = a);
([] = [] = a);