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
|
=== tests/cases/compiler/divergentAccessorsTypes2.ts ===
class Test1<T> {
>Test1 : Test1<T>
get foo(): T { return null as any }
>foo : T
>null as any : any
>null : null
set foo(s: T | undefined ) {
>foo : T
>s : T | undefined
}
}
const s = new Test1<string>();
>s : Test1<string>
>new Test1<string>() : Test1<string>
>Test1 : typeof Test1
s.foo = undefined;
>s.foo = undefined : undefined
>s.foo : string | undefined
>s : Test1<string>
>foo : string | undefined
>undefined : undefined
s.foo = "hello";
>s.foo = "hello" : "hello"
>s.foo : string | undefined
>s : Test1<string>
>foo : string | undefined
>"hello" : "hello"
s.foo = 42;
>s.foo = 42 : 42
>s.foo : string | undefined
>s : Test1<string>
>foo : string | undefined
>42 : 42
|