TypeScript/tests/baselines/reference/covariance1.types
2015-04-15 16:44:20 -07:00

48 lines
649 B
Plaintext

=== tests/cases/compiler/covariance1.ts ===
module M {
>M : typeof M
interface X { m1:number; }
>X : X
>m1 : number
export class XX implements X { constructor(public m1:number) { } }
>XX : XX
>X : X
>m1 : number
interface Y { x:X; }
>Y : Y
>x : X
>X : X
export function f(y:Y) { }
>f : (y: Y) => void
>y : Y
>Y : Y
var a:X;
>a : X
>X : X
f({x:a}); // ok
>f({x:a}) : void
>f : (y: Y) => void
>{x:a} : { x: X; }
>x : X
>a : X
var b:XX;
>b : XX
>XX : XX
f({x:b}); // ok covariant subtype
>f({x:b}) : void
>f : (y: Y) => void
>{x:b} : { x: XX; }
>x : XX
>b : XX
}