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

71 lines
3.2 KiB
Plaintext
Raw Normal View History

tests/cases/compiler/genericSpecializations3.ts(8,7): error TS2420: Class 'IntFooBad' incorrectly implements interface 'IFoo<number>'.
Types of property 'foo' are incompatible.
Type '(x: string) => string' is not assignable to type '(x: number) => number'.
Types of parameters 'x' and 'x' are incompatible.
Type 'string' is not assignable to type 'number'.
2014-11-05 21:26:03 +01:00
tests/cases/compiler/genericSpecializations3.ts(28,1): error TS2322: Type 'StringFoo2' is not assignable to type 'IntFoo'.
Types of property 'foo' are incompatible.
Type '(x: string) => string' is not assignable to type '(x: number) => number'.
Types of parameters 'x' and 'x' are incompatible.
Type 'string' is not assignable to type 'number'.
2014-11-05 21:26:03 +01:00
tests/cases/compiler/genericSpecializations3.ts(29,1): error TS2322: Type 'IntFoo' is not assignable to type 'StringFoo2'.
Types of property 'foo' are incompatible.
Type '(x: number) => number' is not assignable to type '(x: string) => string'.
Types of parameters 'x' and 'x' are incompatible.
Type 'number' is not assignable to type 'string'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/genericSpecializations3.ts (3 errors) ====
interface IFoo<T> {
foo(x: T): T;
}
var iFoo: IFoo<number>;
iFoo.foo(1);
class IntFooBad implements IFoo<number> { // error
~~~~~~~~~
!!! error TS2420: Class 'IntFooBad' incorrectly implements interface 'IFoo<number>'.
!!! error TS2420: Types of property 'foo' are incompatible.
!!! error TS2420: Type '(x: string) => string' is not assignable to type '(x: number) => number'.
!!! error TS2420: Types of parameters 'x' and 'x' are incompatible.
!!! error TS2420: Type 'string' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
foo(x: string): string { return null; }
}
var intFooBad: IntFooBad;
class IntFoo implements IFoo<number> {
foo(x: number): number { return null; }
}
var intFoo: IntFoo;
class StringFoo2 implements IFoo<string> {
foo(x: string): string { return null; }
}
var stringFoo2: StringFoo2;
stringFoo2.foo("hm");
intFoo = stringFoo2; // error
~~~~~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'StringFoo2' is not assignable to type 'IntFoo'.
!!! error TS2322: Types of property 'foo' are incompatible.
!!! error TS2322: Type '(x: string) => string' is not assignable to type '(x: number) => number'.
!!! error TS2322: Types of parameters 'x' and 'x' are incompatible.
!!! error TS2322: Type 'string' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
stringFoo2 = intFoo; // error
~~~~~~~~~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'IntFoo' is not assignable to type 'StringFoo2'.
!!! error TS2322: Types of property 'foo' are incompatible.
!!! error TS2322: Type '(x: number) => number' is not assignable to type '(x: string) => string'.
!!! error TS2322: Types of parameters 'x' and 'x' are incompatible.
!!! error TS2322: Type 'number' is not assignable to type 'string'.
2014-07-13 01:04:16 +02:00
class StringFoo3 implements IFoo<string> { // error
foo<T>(x: T): T { return null; }
}
var stringFoo3: StringFoo3;