TypeScript/tests/baselines/reference/interfaceWithPropertyThatIsPrivateInBaseType.errors.txt
2014-09-17 10:36:32 -07:00

22 lines
No EOL
707 B
Text

==== tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType.ts (2 errors) ====
class Base {
private x: number;
}
interface Foo extends Base { // error
~~~
!!! Interface 'Foo' incorrectly extends interface 'Base':
!!! Property 'x' is private in type 'Base' but not in type 'Foo'.
x: number;
}
class Base2<T> {
private x: T;
}
interface Foo2<T> extends Base2<T> { // error
~~~~
!!! Interface 'Foo2<T>' incorrectly extends interface 'Base2<T>':
!!! Property 'x' is private in type 'Base2<T>' but not in type 'Foo2<T>'.
x: number;
}