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

104 lines
3.1 KiB
Plaintext

==== tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers3.ts (6 errors) ====
interface Base {
foo: string;
}
interface Derived extends Base {
bar: string;
}
// N and M have the same name, same accessibility, same optionality, and N is a subtype of M
// foo properties are valid, bar properties cause errors in the derived class declarations
module NotOptional {
interface A {
foo: Base;
bar: Derived;
}
interface B extends A {
~
!!! Interface 'B' incorrectly extends interface 'A':
!!! Types of property 'bar' are incompatible:
!!! Type 'Base' is not assignable to type 'Derived':
!!! Property 'bar' is missing in type 'Base'.
foo: Derived; // ok
bar: Base; // error
}
interface A2 {
1: Base;
2.0: Derived;
}
interface B2 extends A2 {
~~
!!! Interface 'B2' incorrectly extends interface 'A2':
!!! Types of property '2.0' are incompatible:
!!! Type 'Base' is not assignable to type 'Derived':
!!! Property 'bar' is missing in type 'Base'.
1: Derived; // ok
2: Base; // error
}
interface A3 {
'1': Base;
'2.0': Derived;
}
interface B3 extends A3 {
~~
!!! Interface 'B3' incorrectly extends interface 'A3':
!!! Types of property ''2.0'' are incompatible:
!!! Type 'Base' is not assignable to type 'Derived':
!!! Property 'bar' is missing in type 'Base'.
'1': Derived; // ok
'2.0': Base; // error
}
}
module Optional {
interface A {
foo?: Base;
bar?: Derived;
}
interface B extends A {
~
!!! Interface 'B' incorrectly extends interface 'A':
!!! Types of property 'bar' are incompatible:
!!! Type 'Base' is not assignable to type 'Derived':
!!! Property 'bar' is missing in type 'Base'.
foo?: Derived; // ok
bar?: Base; // error
}
interface A2 {
1?: Base;
2.0?: Derived;
}
interface B2 extends A2 {
~~
!!! Interface 'B2' incorrectly extends interface 'A2':
!!! Types of property '2.0' are incompatible:
!!! Type 'Base' is not assignable to type 'Derived':
!!! Property 'bar' is missing in type 'Base'.
1?: Derived; // ok
2?: Base; // error
}
interface A3 {
'1'?: Base;
'2.0'?: Derived;
}
interface B3 extends A3 {
~~
!!! Interface 'B3' incorrectly extends interface 'A3':
!!! Types of property ''2.0'' are incompatible:
!!! Type 'Base' is not assignable to type 'Derived':
!!! Property 'bar' is missing in type 'Base'.
'1'?: Derived; // ok
'2.0'?: Base; // error
}
}