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

14 lines
544 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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);
~~~~~~~
2014-07-25 04:39:50 +02:00
!!! Argument of type '() => (x: string) => string' is not assignable to parameter of type '(x: string) => string'.
2014-07-13 01:04:16 +02:00
foo(x);
~
2014-07-25 04:39:50 +02:00
!!! Argument of type '() => (x: string) => string' is not assignable to parameter of type '(x: string) => string'.
2014-07-13 01:04:16 +02:00