TypeScript/tests/baselines/reference/recursiveInheritance3.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

16 lines
543 B
Plaintext

tests/cases/compiler/recursiveInheritance3.ts(1,7): error TS2420: Class 'C' incorrectly implements interface 'I'.
Property 'other' is missing in type 'C'.
==== tests/cases/compiler/recursiveInheritance3.ts (1 errors) ====
class C implements I {
~
!!! error TS2420: Class 'C' incorrectly implements interface 'I'.
!!! error TS2420: Property 'other' is missing in type 'C'.
public foo(x: any) { return x; }
private x = 1;
}
interface I extends C {
other(x: any): any;
}