TypeScript/tests/cases/conformance/types/members/objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.ts
2014-07-12 17:30:19 -07:00

14 lines
No EOL
121 B
TypeScript

interface I {
(): void;
}
var i: I;
var f: Object;
f = i;
i = f;
var a: {
(): void
}
f = a;
a = f;