TypeScript/tests/cases/compiler/implicitAnyInAmbientDeclaration.ts

11 lines
371 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//@noimplicitany: true
module Test {
declare class C {
public publicMember; // this should be an error
private privateMember; // this should not be an error
public publicFunction(x); // this should be an error
private privateFunction(privateParam); // this should not be an error
private constructor(privateParam);
}
}