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

9 lines
360 B
Text

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedTemplateStringES6.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