TypeScript/tests/baselines/reference/templateStringInCallExpression.js

6 lines
207 B
TypeScript

//// [templateStringInCallExpression.ts]
`abc${0}abc`(`hello ${0} world`, ` `, `1${2}3`);
//// [templateStringInCallExpression.js]
("abc" + 0 + "abc")("hello " + 0 + " world", " ", "1" + 2 + "3");