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

8 lines
260 B
Plaintext

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