TypeScript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedComments.ts
2014-10-23 15:06:05 -07:00

12 lines
124 B
TypeScript

`head${ // single line comment
10
}
middle${
/* Multi-
* line
* comment
*/
20
// closing comment
}
tail`;