TypeScript/tests/cases/compiler/destructuringInVariableDeclarations4.ts

8 lines
101 B
TypeScript

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