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

19 lines
876 B
Plaintext

==== tests/cases/compiler/implicitAnyInAmbientDeclaration.ts (4 errors) ====
module Test {
declare class C {
public publicMember; // this should be an error
~~~~~~~~~~~~~~~~~~~~
!!! Member 'publicMember' implicitly has an 'any' type.
private privateMember; // this should not be an error
public publicFunction(x); // this should be an error
~~~~~~~~~~~~~~~~~~~~~~~~~
!!! 'publicFunction', which lacks return-type annotation, implicitly has an 'any' return type.
~
!!! Parameter 'x' implicitly has an 'any' type.
private privateFunction(privateParam); // this should not be an error
private constructor(privateParam);
~~~~~~~
!!! 'private' modifier cannot appear on a constructor declaration.
}
}