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

7 lines
97 B
TypeScript

//@target: ES6
function* g() {
yield 0;
function* g2() {
return "";
}
}