TypeScript/tests/baselines/reference/staticMemberAssignsToConstructorFunctionMembers.errors.txt
2014-09-11 16:11:08 -07:00

16 lines
624 B
Plaintext

==== tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/staticMemberAssignsToConstructorFunctionMembers.ts (1 errors) ====
class C {
static foo() {
C.foo = () => { }
}
static bar(x: number): number {
C.bar = () => { } // error
~~~~~
!!! error TS2322: Type '() => void' is not assignable to type '(x: number) => number':
!!! error TS2322: Type 'void' is not assignable to type 'number'.
C.bar = (x) => x; // ok
C.bar = (x: number) => 1; // ok
return 1;
}
}