tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck51.ts(2,9): error TS7025: Generator implicitly has type 'IterableIterator<any>' because it does not yield any values. Consider supplying a return type.


==== tests/cases/conformance/es6/yieldExpressions/generatorTypeCheck51.ts (1 errors) ====
    
    function* g() {
            ~
!!! error TS7025: Generator implicitly has type 'IterableIterator<any>' because it does not yield any values. Consider supplying a return type.
        function* h() {
            yield 0;
        }
    }