TypeScript/tests/cases/conformance/functions/functionOverloadErrorsSyntax.ts

11 lines
377 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//Function overload signature with optional parameter followed by non-optional parameter
function fn4a(x?: number, y: string);
function fn4a() { }
function fn4b(n: string, x?: number, y: string);
function fn4b() { }
//Function overload signature with rest param followed by non-optional parameter
function fn5(x: string, ...y: any[], z: string);
function fn5() { }