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

5 lines
61 B
TypeScript

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