TypeScript/tests/baselines/reference/templateStringInPropertyAssignmentES6.types
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

9 lines
230 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringInPropertyAssignmentES6.ts ===
var x = {
>x : { a: string; }
>{ a: `abc${ 123 }def${ 456 }ghi`} : { a: string; }
a: `abc${ 123 }def${ 456 }ghi`
>a : string
}