1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
=== tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality2.ts ===
// Derived member is optional but base member is not, should be an error
interface Base { foo: string; }
>foo : string
interface Derived extends Base { bar: string; }
>bar : string
interface T {
Foo: Base;
>Foo : Base
}
interface S extends T {
Foo?: Derived // error
>Foo : Derived
}
interface T2 {
1: Base;
>1 : Base
}
interface S2 extends T2 {
1?: Derived; // error
>1 : Derived
}
interface T3 {
'1': Base;
>'1' : Base
}
interface S3 extends T3 {
'1'?: Derived; // error
>'1' : Derived
}
// object literal case
var a: { Foo: Base; }
>a : { Foo: Base; }
>Foo : Base
var b: { Foo?: Derived; }
>b : { Foo?: Derived; }
>Foo : Derived
var r = true ? a : b; // ok
>r : { Foo: Base; } | { Foo?: Derived; }
>true ? a : b : { Foo: Base; } | { Foo?: Derived; }
>true : true
>a : { Foo: Base; }
>b : { Foo?: Derived; }
|