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

43 lines
1.6 KiB
Plaintext

tests/cases/compiler/genericTypeAssertions4.ts(19,5): error TS2322: Type 'A' is not assignable to type 'T'.
tests/cases/compiler/genericTypeAssertions4.ts(20,5): error TS2322: Type 'B' is not assignable to type 'T'.
tests/cases/compiler/genericTypeAssertions4.ts(21,5): error TS2322: Type 'C' is not assignable to type 'T'.
tests/cases/compiler/genericTypeAssertions4.ts(23,9): error TS2352: Neither type 'B' nor type 'T' is assignable to the other.
tests/cases/compiler/genericTypeAssertions4.ts(24,9): error TS2352: Neither type 'C' nor type 'T' is assignable to the other.
==== tests/cases/compiler/genericTypeAssertions4.ts (5 errors) ====
class A {
foo() { return ""; }
}
class B extends A {
bar() { return 1; }
}
class C extends A {
baz() { return 1; }
}
var a: A;
var b: B;
var c: C;
function foo2<T extends A>(x: T) {
var y = x;
y = a; // error: cannot convert A to T
~
!!! error TS2322: Type 'A' is not assignable to type 'T'.
y = b; // error: cannot convert B to T
~
!!! error TS2322: Type 'B' is not assignable to type 'T'.
y = c; // error: cannot convert C to T
~
!!! error TS2322: Type 'C' is not assignable to type 'T'.
y = <T>a;
y = <T>b; // error: cannot convert B to T
~~~~
!!! error TS2352: Neither type 'B' nor type 'T' is assignable to the other.
y = <T>c; // error: cannot convert C to T
~~~~
!!! error TS2352: Neither type 'C' nor type 'T' is assignable to the other.
}