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

13 lines
389 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeParametersShouldNotBeEqual3.ts (2 errors) ====
function ff<T extends Object, U extends Object>(x: T, y: U) {
var z: Object;
x = x; // Ok
x = y; // Ok
~
!!! Type 'U' is not assignable to type 'T'.
x = z; // Ok
~
!!! Type 'Object' is not assignable to type 'T'.
z = x; // Ok
}