TypeScript/tests/baselines/reference/noImplicitAnyModule.errors.txt
2014-07-12 17:30:19 -07:00

29 lines
1,021 B
Plaintext

==== tests/cases/compiler/noImplicitAnyModule.ts (4 errors) ====
declare module Module {
interface Interface {
// Should return error for implicit any on return type.
new ();
~~~~~~~
!!! Construct signature, which lacks return-type annotation, implicitly has an 'any' return type.
}
class Class {
// Should return error for implicit `any` on parameter.
public f(x): any;
~
!!! Parameter 'x' implicitly has an 'any' type.
public g(x: any);
~~~~~~~~~~~~~~~~~
!!! 'g', which lacks return-type annotation, implicitly has an 'any' return type.
// Should not return error at all.
private h(x);
}
// Should return error for implicit any on return type.
function f(x: number);
~~~~~~~~~~~~~~~~~~~~~~
!!! 'f', which lacks return-type annotation, implicitly has an 'any' return type.
}