TypeScript/tests/baselines/reference/templateStringWithEmbeddedTypeOfOperator.types

8 lines
216 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedTypeOfOperator.ts ===
var x = `abc${ typeof "hi" }def`;
>x : string
2015-04-13 21:36:11 +02:00
>`abc${ typeof "hi" }def` : string
>typeof "hi" : string
2015-04-13 21:36:11 +02:00
>"hi" : string