TypeScript/tests/cases/conformance/es6/templates/templateStringWithEmbeddedCommentsES6.ts
2016-03-30 17:39:29 -07:00

13 lines
141 B
TypeScript

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