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

8 lines
200 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringInTypeOf.ts ===
var x = typeof `abc${ 123 }def`;
>x : string
>typeof `abc${ 123 }def` : string
>`abc${ 123 }def` : string
>123 : number