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

10 lines
357 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedTemplateString.ts ===
var x = `123${ `456 ${ " | " } 654` }321 123${ `456 ${ " | " } 654` }321`;
>x : string
>`123${ `456 ${ " | " } 654` }321 123${ `456 ${ " | " } 654` }321` : string
>`456 ${ " | " } 654` : string
>" | " : string
>`456 ${ " | " } 654` : string
>" | " : string