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

6 lines
243 B
TypeScript

//// [templateStringWithOpenCommentInStringPortion.ts]
` /**head ${ 10 } // still middle ${ 20 } /* still tail `
//// [templateStringWithOpenCommentInStringPortion.js]
" /**head " + 10 + " // still middle " + 20 + " /* still tail ";