TypeScript/tests/baselines/reference/templateStringWithEmbeddedUnaryPlusES6.js

6 lines
166 B
TypeScript
Raw Normal View History

//// [templateStringWithEmbeddedUnaryPlusES6.ts]
var x = `abc${ +Infinity }def`;
//// [templateStringWithEmbeddedUnaryPlusES6.js]
var x = `abc${+Infinity}def`;