TypeScript/tests/baselines/reference/assignmentCompatWithConstructSignatures.errors.txt

63 lines
3.2 KiB
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts(28,1): error TS2322: Type 'S2' is not assignable to type 'T'.
tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts(29,1): error TS2322: Type '(x: string) => void' is not assignable to type 'T'.
tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts(30,1): error TS2322: Type '(x: string) => number' is not assignable to type 'T'.
tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts(31,1): error TS2322: Type '(x: string) => string' is not assignable to type 'T'.
tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts(32,1): error TS2322: Type 'S2' is not assignable to type 'new (x: number) => void'.
tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts(33,1): error TS2322: Type '(x: string) => void' is not assignable to type 'new (x: number) => void'.
tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts(34,1): error TS2322: Type '(x: string) => number' is not assignable to type 'new (x: number) => void'.
tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts(35,1): error TS2322: Type '(x: string) => string' is not assignable to type 'new (x: number) => void'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts (8 errors) ====
// void returning call signatures can be assigned a non-void returning call signature that otherwise matches
interface T {
new (x: number): void;
}
var t: T;
var a: { new (x: number): void };
t = a;
a = t;
interface S {
new (x: number): string;
}
var s: S;
var a2: { new (x: number): string };
t = s;
t = a2;
a = s;
a = a2;
interface S2 {
(x: string): void;
}
var s2: S2;
var a3: { (x: string): void };
// these are errors
t = s2;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'S2' is not assignable to type 'T'.
2014-07-13 01:04:16 +02:00
t = a3;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '(x: string) => void' is not assignable to type 'T'.
2014-07-13 01:04:16 +02:00
t = (x: string) => 1;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '(x: string) => number' is not assignable to type 'T'.
2014-07-13 01:04:16 +02:00
t = function (x: string) { return ''; }
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '(x: string) => string' is not assignable to type 'T'.
2014-07-13 01:04:16 +02:00
a = s2;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'S2' is not assignable to type 'new (x: number) => void'.
2014-07-13 01:04:16 +02:00
a = a3;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '(x: string) => void' is not assignable to type 'new (x: number) => void'.
2014-07-13 01:04:16 +02:00
a = (x: string) => 1;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '(x: string) => number' is not assignable to type 'new (x: number) => void'.
2014-07-13 01:04:16 +02:00
a = function (x: string) { return ''; }
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type '(x: string) => string' is not assignable to type 'new (x: number) => void'.
2014-07-13 01:04:16 +02:00