TypeScript/tests/cases/compiler/destructuringInVariableDeclarations5.ts

7 lines
96 B
TypeScript

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