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

4 lines
64 B
TypeScript
Raw Normal View History

// @target: ES6
while (`abc${0}abc`) {
`def${1}def`;
}