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

8 lines
111 B
TypeScript

// @target: es6
function*foo() {
function bar() {
function* quux() {
yield(foo);
}
}
}