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

3 lines
72 B
TypeScript
Raw Normal View History

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