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

6 lines
141 B
TypeScript

// @target: ES6
function* gen() {
// Once this is supported, yield *must* be parenthesized.
var x = `abc${ yield 10 }def`;
}