TypeScript/tests/baselines/reference/typeParameterArgumentEquivalence4.errors.txt
Daniel Rosenwasser 6e77e2e810 Removed colons from diagnostic messages.
Also got rid of the 'terminalMessages' concept.
2014-10-28 00:48:58 -07:00

20 lines
No EOL
964 B
Text

tests/cases/compiler/typeParameterArgumentEquivalence4.ts(4,5): error TS2323: Type '(item: any) => T' is not assignable to type '(item: any) => U'.
Type 'T' is not assignable to type 'U'.
tests/cases/compiler/typeParameterArgumentEquivalence4.ts(5,5): error TS2323: Type '(item: any) => U' is not assignable to type '(item: any) => T'.
Type 'U' is not assignable to type 'T'.
==== tests/cases/compiler/typeParameterArgumentEquivalence4.ts (2 errors) ====
function foo<T,U>() {
var x: (item) => U;
var y: (item) => T;
x = y; // Should be an error
~
!!! error TS2323: Type '(item: any) => T' is not assignable to type '(item: any) => U'.
!!! error TS2323: Type 'T' is not assignable to type 'U'.
y = x; // Shound be an error
~
!!! error TS2323: Type '(item: any) => U' is not assignable to type '(item: any) => T'.
!!! error TS2323: Type 'U' is not assignable to type 'T'.
}