TypeScript/tests/baselines/reference/noImplicitAnyForwardReferencedInterface.errors.txt
2014-09-12 13:35:07 -07:00

12 lines
527 B
Plaintext

tests/cases/compiler/noImplicitAnyForwardReferencedInterface.ts(5,5): error TS7013: Construct signature, which lacks return-type annotation, implicitly has an 'any' return type.
==== tests/cases/compiler/noImplicitAnyForwardReferencedInterface.ts (1 errors) ====
declare var x: Entry;
interface Entry {
// Should return error for implicit any.
new ();
~~~~~~~
!!! error TS7013: Construct signature, which lacks return-type annotation, implicitly has an 'any' return type.
}