tests/cases/conformance/es6/yieldExpressions/YieldExpression17_es6.ts(1,15): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/conformance/es6/yieldExpressions/YieldExpression17_es6.ts(1,15): error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.


==== tests/cases/conformance/es6/yieldExpressions/YieldExpression17_es6.ts (2 errors) ====
    var v = { get foo() { yield foo; } }
                  ~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
                  ~~~
!!! error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.