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

6 lines
151 B
TypeScript

//// [templateStringWithEmbeddedModulo.ts]
var x = `abc${ 1 % 1 }def`;
//// [templateStringWithEmbeddedModulo.js]
var x = "abc" + 1 % 1 + "def";