TypeScript/tests/baselines/reference/templateStringInTypeAssertionES6.types

8 lines
200 B
Plaintext
Raw Normal View History

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