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

13 lines
377 B
Plaintext

==== tests/cases/compiler/callConstructAssignment.ts (2 errors) ====
var foo:{ ( ):void; }
var bar:{ new ( ):any; }
foo = bar; // error
~~~
!!! error TS2323: Type 'new () => any' is not assignable to type '() => void'.
bar = foo; // error
~~~
!!! error TS2323: Type '() => void' is not assignable to type 'new () => any'.