TypeScript/tests/baselines/reference/templateStringWithEmbeddedObjectLiteralES6.types
2014-10-23 15:06:05 -07:00

8 lines
221 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedObjectLiteralES6.ts ===
var x = `abc${ { x: 10, y: 20 } }def`;
>x : string
>{ x: 10, y: 20 } : { x: number; y: number; }
>x : number
>y : number