TypeScript/tests/cases/compiler/destructuringInVariableDeclarations3.ts

7 lines
96 B
TypeScript
Raw Normal View History

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