TypeScript/tests/baselines/reference/templateStringWithEmbeddedUnaryPlusES6.types

8 lines
212 B
Plaintext
Raw Normal View History

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