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

6 lines
239 B
TypeScript

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