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

32 lines
699 B
Plaintext

tests/cases/compiler/classWithMultipleBaseClasses.ts(18,7): error TS2420: Class 'D' incorrectly implements interface 'I'.
Property 'foo' is missing in type 'D'.
==== tests/cases/compiler/classWithMultipleBaseClasses.ts (1 errors) ====
class A {
foo() { }
}
class B {
bar() { }
}
interface I {
baz();
}
interface J {
bat();
}
class D implements I, J {
~
!!! error TS2420: Class 'D' incorrectly implements interface 'I'.
!!! error TS2420: Property 'foo' is missing in type 'D'.
baz() { }
bat() { }
}
interface I extends A, B {
}