TypeScript/tests/cases/conformance/es6/templates/templateStringInYieldKeyword.ts
2016-11-17 23:17:42 -08:00

6 lines
165 B
TypeScript

// @target: es6
function* gen() {
// Once this is supported, the inner expression does not need to be parenthesized.
var x = yield `abc${ x }def`;
}