TypeScript/tests/baselines/reference/YieldExpression4_es6.types
2016-11-17 23:17:42 -08:00

11 lines
188 B
Plaintext

=== tests/cases/conformance/es6/yieldExpressions/YieldExpression4_es6.ts ===
function* foo() {
>foo : () => IterableIterator<any>
yield;
>yield : any
yield;
>yield : any
}