TypeScript/tests/baselines/reference/interfaceImplementation7.errors.txt
2014-07-12 17:30:19 -07:00

20 lines
874 B
Plaintext

==== tests/cases/compiler/interfaceImplementation7.ts (2 errors) ====
interface i1{ name(): { s: string; }; }
interface i2{ name(): { n: number; }; }
interface i3 extends i1, i2 { }
~~
!!! Interface 'i3' cannot simultaneously extend types 'i1' and 'i2':
!!! Named properties 'name' of types 'i1' and 'i2' are not identical.
interface i4 extends i1, i2 { name(): { s: string; n: number; }; }
class C1 implements i4 {
~~
!!! Class 'C1' incorrectly implements interface 'i4':
!!! Types of property 'name' are incompatible:
!!! Type '() => string' is not assignable to type '() => { s: string; n: number; }':
!!! Type 'string' is not assignable to type '{ s: string; n: number; }':
!!! Property 's' is missing in type 'String'.
public name(): string { return ""; }
}