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

6 lines
130 B
TypeScript

// @target: es6
function*bar() {
// 'yield' here is an identifier, and not a yield expression.
function*foo(a = yield) {
}
}