TypeScript/tests/baselines/reference/destructuringInVariableDeclarations3.symbols

9 lines
299 B
Plaintext

=== tests/cases/compiler/destructuringInVariableDeclarations3.ts ===
export let { toString } = 1;
>toString : Symbol(toString, Decl(destructuringInVariableDeclarations3.ts, 0, 12))
{
let { toFixed } = 1;
>toFixed : Symbol(toFixed, Decl(destructuringInVariableDeclarations3.ts, 2, 9))
}