TypeScript/tests/cases/compiler/declarationEmitDestructuringArrayPattern3.ts

4 lines
69 B
TypeScript
Raw Normal View History

// @declaration: true
module M {
export var [a, b] = [1, 2];
}