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

6 lines
168 B
TypeScript

//// [templateStringWithEmbeddedMultiplicationES6.ts]
var x = `abc${ 7 * 6 }def`;
//// [templateStringWithEmbeddedMultiplicationES6.js]
var x = `abc${7 * 6}def`;