TypeScript/tests/cases/conformance/es6/destructuring/optionalBindingParametersInOverloads2.ts
Daniel Rosenwasser dafe7c8958 Added tests.
2015-01-14 17:02:31 -08:00

9 lines
177 B
TypeScript

function foo({ x, y, z }?: { x: string; y: number; z: boolean });
function foo(...rest: any[]) {
}
foo({ x: "", y: 0, z: false });
foo({ x: false, y: 0, z: "" });