TypeScript/tests/cases/conformance/es6/templates/templateStringInPropertyNameES6_2.ts
Daniel Rosenwasser 0d1a46d68c Better test coverage for templates in object literals.
These tests still need to be fixed.
2014-10-23 16:55:35 -07:00

4 lines
70 B
TypeScript

// @target: ES6
var x = {
`abc${ 123 }def${ 456 }ghi`: 321
}