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

20 lines
439 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/AutomaticSemicolonInsertion/parserAutomaticSemicolonInsertion1.ts (2 errors) ====
interface I {
(): void;
}
var i: I;
var o: Object;
o = i;
i = o;
~
!!! Type 'Object' is not assignable to type 'I'.
var a: {
(): void
}
o = a;
a = o;
~
!!! Type 'Object' is not assignable to type '() => void'.