TypeScript/tests/baselines/reference/publicMemberImplementedAsPrivateInDerivedClass.errors.txt
Daniel Rosenwasser 6e77e2e810 Removed colons from diagnostic messages.
Also got rid of the 'terminalMessages' concept.
2014-10-28 00:48:58 -07:00

15 lines
594 B
Plaintext

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'.
==== 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'.
private Bar: number;
}