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

4 lines
54 B
TypeScript

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