TypeScript/tests/baselines/reference/assignToFn.errors.txt
2014-07-12 17:30:19 -07:00

13 lines
316 B
Plaintext

==== 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";
~~~
!!! Type 'string' is not assignable to type '(n: number) => boolean'.
}