TypeScript/tests/baselines/reference/templateStringWithEmbeddedConditional.types

6 lines
185 B
Plaintext
Raw Normal View History

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