TypeScript/tests/cases/compiler/destructuringInVariableDeclarations6.ts

8 lines
101 B
TypeScript

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