TypeScript/tests/baselines/reference/interfaceDeclaration6.errors.txt
2014-09-11 16:11:08 -07:00

12 lines
481 B
Plaintext

==== tests/cases/compiler/interfaceDeclaration6.ts (1 errors) ====
interface i1 { foo: number; };
interface i2 extends i1 { foo: number; };
interface i3 extends i1 { foo: string; };
~~
!!! error TS2429: Interface 'i3' incorrectly extends interface 'i1':
!!! error TS2429: Types of property 'foo' are incompatible:
!!! error TS2429: Type 'string' is not assignable to type 'number'.
interface i4 {
bar():any;
bar():any;
}