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

8 lines
218 B
Plaintext

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