TypeScript/tests/baselines/reference/templateStringWithEmbeddedConditionalES6.types

6 lines
188 B
Text
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedConditionalES6.ts ===
var x = `abc${ true ? false : " " }def`;
>x : string
>true ? false : " " : string | boolean