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

8 lines
135 B
Plaintext

=== tests/cases/compiler/yieldExpression1.ts ===
function* foo() {
>foo : () => IterableIterator<any>
yield
>yield : any
}