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

12 lines
174 B
TypeScript

//@noimplicitany: true
// this should be an error
interface IFace {
funcOfIFace(); // error at "f"
}
// this should not be an error
interface IFace1{
f1(): any;
}