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

19 lines
442 B
Plaintext

==== tests/cases/conformance/types/members/objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts (2 errors) ====
interface I {
new(): any;
}
var i: I;
var f: Object;
f = i;
i = f;
~
!!! Type 'Object' is not assignable to type 'I'.
var a: {
new(): any
}
f = a;
a = f;
~
!!! Type 'Object' is not assignable to type 'new () => any'.