TypeScript/tests/baselines/reference/templateStringWithEmbeddedAddition.js
2014-10-23 15:06:05 -07:00

6 lines
161 B
TypeScript

//// [templateStringWithEmbeddedAddition.ts]
var x = `abc${ 10 + 10 }def`;
//// [templateStringWithEmbeddedAddition.js]
var x = "abc" + (10 + 10) + "def";