TypeScript/tests/cases/compiler/systemModule13.ts

5 lines
138 B
TypeScript
Raw Normal View History

2015-06-10 21:32:24 +02:00
// @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]]) {}