TypeScript/tests/cases/compiler/destructuringInVariableDeclarations7.ts

7 lines
99 B
TypeScript

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