TypeScript/tests/cases/compiler/declarationEmitDestructuringPrivacyError.ts

6 lines
No EOL
105 B
TypeScript

// @declaration: true
module m {
class c {
}
export var [x, y, z] = [10, new c(), 30];
}