TypeScript/tests/baselines/reference/templateStringInTypeOf.types

8 lines
200 B
Plaintext
Raw Normal View History

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