TypeScript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedComments.ts

12 lines
124 B
TypeScript
Raw Normal View History

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