TypeScript/tests/cases/conformance/es6/templates/templateStringInObjectLiteralES6.ts
2014-10-23 15:06:05 -07:00

5 lines
72 B
TypeScript

// @target: ES6
var x = {
a: `abc${ 123 }def`,
`b`: 321
}