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

14 lines
450 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/assignmentStricterConstraints.ts (2 errors) ====
var f = function <T, S extends T>(x: T, y: S): void {
~~~~~~~~~~~
!!! Constraint of a type parameter cannot reference any type parameter from the same type parameter list.
x = y
~
!!! Type 'S' is not assignable to type 'T'.
}
var g = function <T, S>(x: T, y: S): void { }
g = f
g(1, "")