TypeScript/tests/cases/compiler/destructuringInVariableDeclarations1.ts

7 lines
101 B
TypeScript

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