TypeScript/tests/baselines/reference/genericFunctionTypedArgumentsAreFixed.errors.txt
2014-07-12 17:30:19 -07:00

5 lines
258 B
Plaintext

==== tests/cases/compiler/genericFunctionTypedArgumentsAreFixed.ts (1 errors) ====
declare function map<T, U>(f: (x: T) => U, xs: T[]): U[];
map((a) => a.length, [1]);
~~~~~~
!!! Property 'length' does not exist on type 'number'.