TypeScript/tests/baselines/reference/templateStringInPropertyAssignment.types
2015-04-15 16:44:20 -07:00

12 lines
296 B
Plaintext

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