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

14 lines
451 B
Plaintext
Raw Normal View History

tests/cases/compiler/genericLambaArgWithoutTypeArguments.ts(7,11): error TS2314: Generic type 'Foo<T>' requires 1 type argument(s).
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/genericLambaArgWithoutTypeArguments.ts (1 errors) ====
interface Foo<T> {
x: T;
}
function foo(a) {
return null;
}
foo((arg: Foo) => { return arg.x; });
~~~
!!! error TS2314: Generic type 'Foo<T>' requires 1 type argument(s).
2014-07-13 01:04:16 +02:00