TypeScript/tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.ts
2016-02-01 16:51:33 -08:00

4 lines
80 B
TypeScript

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