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

8 lines
320 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedUnaryPlusES6.ts ===
var x = `abc${ +Infinity }def`;
>x : string, Symbol(x, Decl(templateStringWithEmbeddedUnaryPlusES6.ts, 0, 3))
>`abc${ +Infinity }def` : string
>+Infinity : number
>Infinity : number, Symbol(Infinity, Decl(lib.d.ts, 22, 11))