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

16 lines
456 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/compiler/assignToFn.ts(8,5): error TS2322: Type 'string' is not assignable to type '(n: number) => boolean'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/assignToFn.ts (1 errors) ====
module M {
interface I {
f(n:number):boolean;
}
var x:I={ f:function(n) { return true; } };
x.f="hello";
~~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'string' is not assignable to type '(n: number) => boolean'.
2014-07-13 01:04:16 +02:00
}