TypeScript/tests/baselines/reference/YieldExpression14_es6.errors.txt
2015-05-11 17:48:12 -07:00

11 lines
402 B
Plaintext

tests/cases/conformance/es6/yieldExpressions/YieldExpression14_es6.ts(3,6): error TS1163: A 'yield' expression is only allowed in a generator body.
==== tests/cases/conformance/es6/yieldExpressions/YieldExpression14_es6.ts (1 errors) ====
class C {
foo() {
yield foo
~~~~~
!!! error TS1163: A 'yield' expression is only allowed in a generator body.
}
}