TypeScript/tests/baselines/reference/templateStringInNewOperator.js

6 lines
143 B
TypeScript
Raw Normal View History

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