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

42 lines
952 B
Plaintext

==== tests/cases/compiler/functionAssignment.ts (2 errors) ====
function f(n: Function) { }
f(function () { });
interface foo {
get(handler: (bar: number)=>void): void;
}
interface baz {
get(callback: Function): number;
}
var barbaz: baz;
var test: foo;
test.get(function (param) {
var x = barbaz.get(function () { });
});
function f2(n: () => void) { }
f2(() => {
var n = '';
n = 4;
~
!!! Type 'number' is not assignable to type 'string'.
});
function f3(a: { a: number; b: number; }) { }
f3({ a: 0, b: 0 });
function callb(lam:(l: number) => void );
function callb(lam:(n: string)=>void);
function callb(a) { }
callb((a) =>{ a.length; });
~~~~~~
!!! Property 'length' does not exist on type 'number'.