TypeScript/tests/baselines/reference/genericConstraintSatisfaction1.errors.txt
2014-07-24 19:39:50 -07:00

12 lines
418 B
Plaintext

==== tests/cases/compiler/genericConstraintSatisfaction1.ts (1 errors) ====
interface I<S> {
f: <T extends S>(x: T) => void
}
var x: I<{s: string}>
x.f({s: 1})
~~~~~~
!!! Argument of type '{ s: number; }' is not assignable to parameter of type '{ s: string; }'.
!!! Types of property 's' are incompatible:
!!! Type 'number' is not assignable to type 'string'.