TypeScript/tests/baselines/reference/FunctionDeclaration10_es6.types

8 lines
230 B
Plaintext

=== tests/cases/conformance/es6/functionDeclarations/FunctionDeclaration10_es6.ts ===
function * foo(a = yield => yield) {
>foo : (a: any, yield: any) => Generator<never, void, unknown>
>a : any
>yield : any
>yield : any
}