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

7 lines
87 B
TypeScript
Raw Normal View History

2015-07-17 02:23:43 +02:00
// @target: es5
// @declaration: true
2015-07-17 02:23:43 +02:00
var a: any;
({} = {} = a);
([] = [] = a);