TypeScript/tests/baselines/reference/implicitAnyInAmbientDeclaration.errors.txt

19 lines
876 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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.
}
}