TypeScript/tests/cases/compiler/destructuringInVariableDeclarations2.ts

8 lines
106 B
TypeScript

// @target: es6
// @module: commonjs
let { toString } = 1;
{
let { toFixed } = 1;
}
export {};