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

17 lines
633 B
Plaintext

tests/cases/compiler/typeParametersShouldNotBeEqual.ts(4,5): error TS2322: Type 'U' is not assignable to type 'T'.
tests/cases/compiler/typeParametersShouldNotBeEqual.ts(5,5): error TS2322: Type 'Object' is not assignable to type 'T'.
==== tests/cases/compiler/typeParametersShouldNotBeEqual.ts (2 errors) ====
function ff<T, U>(x: T, y: U) {
var z: Object;
x = x; // Ok
x = y; // Error
~
!!! error TS2322: Type 'U' is not assignable to type 'T'.
x = z; // Error
~
!!! error TS2322: Type 'Object' is not assignable to type 'T'.
z = x; // Ok
}