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

8 lines
244 B
Plaintext

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