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

7 lines
77 B
TypeScript
Raw Normal View History

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