TypeScript/tests/cases/conformance/functions/functionOverloadErrorsSyntax.ts
2014-07-12 17:30:19 -07:00

11 lines
377 B
TypeScript

//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() { }