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

14 lines
544 B
Plaintext

==== 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 of type '() => (x: string) => string' is not assignable to parameter of type '(x: string) => string'.
foo(x);
~
!!! Argument of type '() => (x: string) => string' is not assignable to parameter of type '(x: string) => string'.