TypeScript/tests/baselines/reference/voidAsNonAmbiguousReturnType.errors.txt

14 lines
673 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/voidAsNonAmbiguousReturnType_1.ts (0 errors) ====
///<reference path='voidAsNonAmbiguousReturnType_0.ts'/>
import fs = require("voidAsNonAmbiguousReturnType_0");
function main() {
fs.mkdirSync('test'); // should not error - return types are the same
}
==== tests/cases/compiler/voidAsNonAmbiguousReturnType_0.ts (1 errors) ====
export function mkdirSync(path: string, mode?: number): void;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Overload signature is not compatible with function implementation.
export function mkdirSync(path: string, mode?: string): void {}