==== tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType2.ts (2 errors) ==== class Base { private x() {} } interface Foo extends Base { // error ~~~ !!! Interface 'Foo' incorrectly extends interface 'Base': !!! Private property 'x' cannot be reimplemented. x(): any; } class Base2 { private x() { } } interface Foo2 extends Base2 { // error ~~~~ !!! Interface 'Foo2' incorrectly extends interface 'Base2': !!! Private property 'x' cannot be reimplemented. x(): any; }