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

9 lines
383 B
Plaintext
Raw Normal View History

2015-06-02 02:40:35 +02:00
tests/cases/conformance/es6/yieldExpressions/generatorInAmbientContext1.ts(2,5): error TS1221: Generators are not allowed in an ambient context.
==== tests/cases/conformance/es6/yieldExpressions/generatorInAmbientContext1.ts (1 errors) ====
declare class C {
*generator(): any;
~
2015-06-02 02:40:35 +02:00
!!! error TS1221: Generators are not allowed in an ambient context.
}