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 56 57 58 59
|
=== tests/cases/compiler/intersectionPropertyCheck.ts ===
let obj: { a: { x: string } } & { c: number } = { a: { x: 'hello', y: 2 }, c: 5 }; // Nested excess property
>obj : { a: { x: string;}; } & { c: number; }
>a : { x: string; }
>x : string
>c : number
>{ a: { x: 'hello', y: 2 }, c: 5 } : { a: { x: string; y: number; }; c: number; }
>a : { x: string; y: number; }
>{ x: 'hello', y: 2 } : { x: string; y: number; }
>x : string
>'hello' : "hello"
>y : number
>2 : 2
>c : number
>5 : 5
declare let wrong: { a: { y: string } };
>wrong : { a: { y: string;}; }
>a : { y: string; }
>y : string
let weak: { a?: { x?: number } } & { c?: string } = wrong; // Nested weak object type
>weak : { a?: { x?: number | undefined; } | undefined; } & { c?: string | undefined; }
>a : { x?: number | undefined; } | undefined
>x : number | undefined
>c : string | undefined
>wrong : { a: { y: string; }; }
function foo<T extends object>(x: { a?: string }, y: T & { a: boolean }) {
>foo : <T extends object>(x: { a?: string;}, y: T & { a: boolean;}) => void
>x : { a?: string | undefined; }
>a : string | undefined
>y : T & { a: boolean; }
>a : boolean
x = y; // Mismatched property in source intersection
>x = y : T & { a: boolean; }
>x : { a?: string | undefined; }
>y : T & { a: boolean; }
}
// Repro from #36637
interface Test {
readonly hi?: string[]
>hi : string[] | undefined
}
function test<T extends object>(value: T): Test {
>test : <T extends object>(value: T) => Test
>value : T
return { ...value, hi: true }
>{ ...value, hi: true } : T & { hi: boolean; }
>value : T
>hi : boolean
>true : true
}
|