TypeScript/tests/baselines/reference/templateStringWithEmbeddedTypeOfOperatorES6.types
2015-04-13 14:29:37 -07:00

8 lines
290 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedTypeOfOperatorES6.ts ===
var x = `abc${ typeof "hi" }def`;
>x : string, Symbol(x, Decl(templateStringWithEmbeddedTypeOfOperatorES6.ts, 0, 3))
>`abc${ typeof "hi" }def` : string
>typeof "hi" : string
>"hi" : string