TypeScript/tests/cases/compiler/systemModule13.ts
2015-06-10 12:32:24 -07:00

5 lines
138 B
TypeScript

// @module: system
export let [x,y,z] = [1, 2, 3];
export const {a: z0, b: {c: z1}} = {a: true, b: {c: "123"}};
for ([x] of [[1]]) {}