TypeScript/tests/baselines/reference/parser536727.errors.txt
Anders Hejlsberg a515b199b7 Better error messages in function calls.
Fixes #93.
This is an evolution of #220.
2014-07-24 17:00:03 -07:00

14 lines
No EOL
532 B
Text

==== tests/cases/conformance/parser/ecmascript5/RegressionTests/parser536727.ts (2 errors) ====
function foo(f: (x: string) => string) {
return f("");
}
var g = (x: string) => x + "blah";
var x = () => g;
foo(g);
foo(() => g);
~~~~~~~
!!! Argument type '() => (x: string) => string' is not assignable to parameter type '(x: string) => string'.
foo(x);
~
!!! Argument type '() => (x: string) => string' is not assignable to parameter type '(x: string) => string'.