TypeScript/tests/baselines/reference/YieldExpression15_es6.errors.txt

9 lines
408 B
Plaintext
Raw Normal View History

tests/cases/conformance/es6/yieldExpressions/YieldExpression15_es6.ts(2,6): error TS1163: 'yield' expression must be contained_within a generator declaration.
2014-11-25 07:45:33 +01:00
==== tests/cases/conformance/es6/yieldExpressions/YieldExpression15_es6.ts (1 errors) ====
2014-11-25 07:45:33 +01:00
var v = () => {
yield foo
~~~~~
!!! error TS1163: 'yield' expression must be contained_within a generator declaration.
}