TypeScript/tests/cases/compiler/destructuringInVariableDeclarations3.ts

7 lines
96 B
TypeScript

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