TypeScript/tests/baselines/reference/chainedAssignment1.errors.txt
2014-11-05 12:26:03 -08:00

38 lines
1.2 KiB
Plaintext

tests/cases/compiler/chainedAssignment1.ts(21,1): error TS2322: Type 'Z' is not assignable to type 'X'.
Property 'a' is missing in type 'Z'.
tests/cases/compiler/chainedAssignment1.ts(21,6): error TS2322: Type 'Z' is not assignable to type 'Y'.
Property 'a' is missing in type 'Z'.
tests/cases/compiler/chainedAssignment1.ts(22,1): error TS2322: Type 'Z' is not assignable to type 'Y'.
==== tests/cases/compiler/chainedAssignment1.ts (3 errors) ====
class X {
constructor(public z) { }
a: number;
}
class Y {
constructor(public z) {
}
a: number;
b: string;
}
class Z {
z: any;
c: string;
}
var c1 = new X(3);
var c2 = new Y(5);
var c3 = new Z();
c1 = c2 = c3; // a bug made this not report the same error as below
~~
!!! error TS2322: Type 'Z' is not assignable to type 'X'.
!!! error TS2322: Property 'a' is missing in type 'Z'.
~~
!!! error TS2322: Type 'Z' is not assignable to type 'Y'.
!!! error TS2322: Property 'a' is missing in type 'Z'.
c2 = c3; // Error TS111: Cannot convert Z to Y
~~
!!! error TS2322: Type 'Z' is not assignable to type 'Y'.