TypeScript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.ts

4 lines
80 B
TypeScript
Raw Normal View History

// @sourcemap: true
var {x} = { x: 20 };
var { a, b } = { a: 30, b: 40 };