TypeScript/tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck51.ts
2015-05-04 16:15:55 -07:00

8 lines
106 B
TypeScript

//@target: ES6
//@noImplicitAny: true
function* g() {
function* h() {
yield 0;
}
}