TypeScript/tests/cases/compiler/errorOnContextuallyTypedReturnType.ts

3 lines
140 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
var n1: () => boolean = function () { }; // expect an error here
var n2: () => boolean = function ():boolean { }; // expect an error here