swc/crates/swc_ecma_parser/tests/tsc/YieldExpression19_es6.ts

8 lines
104 B
TypeScript

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