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

8 lines
256 B
Plaintext

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