TypeScript/tests/cases/compiler/noImplicitAnyForwardReferencedInterface.ts
2014-07-12 17:30:19 -07:00

7 lines
131 B
TypeScript

//@noImplicitAny: true
declare var x: Entry;
interface Entry {
// Should return error for implicit any.
new ();
}