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

15 lines
594 B
Plaintext
Raw Normal View History

tests/cases/compiler/publicMemberImplementedAsPrivateInDerivedClass.ts(4,7): error TS2420: Class 'Foo' incorrectly implements interface 'Qux'.
Property 'Bar' is private in type 'Foo' but not in type 'Qux'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/publicMemberImplementedAsPrivateInDerivedClass.ts (1 errors) ====
interface Qux {
Bar: number;
}
class Foo implements Qux {
~~~
!!! error TS2420: Class 'Foo' incorrectly implements interface 'Qux'.
!!! error TS2420: Property 'Bar' is private in type 'Foo' but not in type 'Qux'.
2014-07-13 01:04:16 +02:00
private Bar: number;
}