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

8 lines
216 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedTypeOfOperator.ts ===
var x = `abc${ typeof "hi" }def`;
>x : string
>`abc${ typeof "hi" }def` : string
>typeof "hi" : string
>"hi" : string