TypeScript/tests/cases/conformance/es6/destructuring/iterableArrayPattern23.ts
2015-03-25 18:04:11 -07:00

3 lines
72 B
TypeScript

//@target: ES6
var a: string, b: boolean;
[a, b] = { 0: "", 1: true };